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