aboutsummaryrefslogtreecommitdiffstats
path: root/server/start.sh
blob: 995102b29db94546ccb25420bbe260cfaee91daa (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/sh
cd $(dirname $0)

if [ "$1" != "" -a "${1:0:1}" != "-" ]; then
	ip="@${1}"
	shift
fi

erl -name distributed_music_system_main_node${ip} -eval "dispatcher:start()." -noshell $@