mirror of
https://github.com/newnius/Dockerfiles.git
synced 2025-06-07 16:41:55 +00:00
12 lines
176 B
Bash
Executable File
12 lines
176 B
Bash
Executable File
#! /bin/bash
|
|
|
|
if [[ $1 == "master" ]]; then
|
|
./sbin/start_master.sh
|
|
fi
|
|
|
|
if [[ $1 == "slave" ]]; then
|
|
./sbin/start_slave.sh spark://$2:7077
|
|
fi
|
|
|
|
while true; do sleep 1000; done
|