#!/sbin/runscript
#
#bcfg-bcfgconfigurationclient
#
#depend(){
neednet
}
start(){
ebegin"Starting bcfg"if[-e/etc/bcfg.dont_run]; theneinfo"bcfg does not need to run"eend0elsestart-stop-daemon--start--quiet\
--startas/usr/sbin/bcfg.py---q-seend$?"Failed to start bcfg"fi
}
stop(){
ebegin"Stopping bcfg"/bin/trueeend0
}