Differences From
Artifact [bccda73137]:
1
2
3
4
5
6
7
8
|
_service_plain: .USE
chroot -u ${DAEMON_$@_USER} -g ${DAEMON_$@_GROUP} ${DAEMON_$@_CWD} $${CMD} ${DAEMON_$@_FLAGS} ${DAEMON_$@_BACKGROUND}
_service_status: .USE
echo "Plain service status doesn't work right now."
_service_exit: .USEBEFORE
echo "Plain service exit doesn't work right now."
|
|
|
|
|
1
2
3
4
5
6
7
8
|
_service_plain: .USE
chroot -u ${DAEMON_$@_USER} -g ${DAEMON_$@_GROUP} ${DAEMON_$@_CWD} $${CMD} ${DAEMON_$@_FLAGS} ${DAEMON_$@_BACKGROUND}
_service_plain_status: .USE
echo "Plain service status doesn't work right now."
_service_plain_exit: .USEBEFORE
export CMD="chroot -u ${DAEMON_$@_USER} -g ${DAEMON_$@_GROUP} ${DAEMON_$@_CWD} $${CMD} ${DAEMON_$@_FLAGS}"
|