mirror of
https://github.com/newnius/Dockerfiles.git
synced 2025-06-06 16:11:55 +00:00
12 lines
193 B
Bash
Executable File
12 lines
193 B
Bash
Executable File
#! /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
|