aboutsummaryrefslogtreecommitdiffstats
path: root/server/start.sh
blob: c4f7d0ad59ab66bde50de5eaea33b8f575352b74 (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/bash
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 $@