summaryrefslogtreecommitdiffstats
path: root/network/prosody/README.SBo
blob: 83f036f35e56e170b6634ba0f56711954add64a9 (plain)
In order to start prosody at boot and stop it properly at shutdown, 
make sure rc.local and rc.local_shutdown contain the following lines:

	/etc/rc.d/rc.local
	==================
	# Startup prosody
	if [ -x /etc/rc.d/rc.prosody ]; then
		/etc/rc.d/rc.prosody  start
	fi

	/etc/rc.d/rc.local_shutdown
	===========================
	# Stop prosody
	if [ -x /etc/rc.d/rc.prosody ]; then
		/etc/rc.d/rc.prosody stop
	fi