eff81b7ff8
* added system group cgred * added service /etc/sv/cgred * Two conf files, /etc/cgrules.conf and /etc/cgconfig.conf * setgid on cgexec to cgred * use relative paths for chown/chmod * remove service configuration file * add OPTS and docs to ./run script * fix cross (thanks xtraeme!)
7 lines
102 B
Bash
Executable file
7 lines
102 B
Bash
Executable file
#!/bin/sh
|
|
case ${ACTION} in
|
|
post)
|
|
chown root:cgred usr/bin/cgexec
|
|
chmod g+s usr/bin/cgexec
|
|
;;
|
|
esac
|