mirror of
https://github.com/void-linux/void-packages.git
synced 2025-10-08 11:35:11 +02:00
* 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
|