Skip to content
This repository has been archived by the owner on Apr 15, 2020. It is now read-only.

Commit

Permalink
fix: missed one hardcoded /sbin in sysvinit script
Browse files Browse the repository at this point in the history
accidentally missed one full path specifier in previous commit, intended
to make all invocations occur via $PATH (there was an embedded call to
cgproxy in cgmanager's init script)
  • Loading branch information
smemsh committed Jan 30, 2016
1 parent 34060df commit b7d7f13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/init/sysvinit/cgmanager
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ do_start()
# Kill any existing cgproxy
/etc/init.d/cgproxy stop >/dev/null 2>&1 || true
# check whether to start cgproxy or cgmanager
if /sbin/cgproxy --check-master; then
if cgproxy --check-master; then
NESTED=yes /etc/init.d/cgproxy start || true && { exit 0; }
fi

Expand Down

0 comments on commit b7d7f13

Please sign in to comment.