mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 08:24:36 +08:00
9 lines
165 B
Plaintext
9 lines
165 B
Plaintext
post_install() {
|
|
echo "Adding kinky group"
|
|
getent group kinky > /dev/null || groupadd -f -g 135 -r kinky
|
|
}
|
|
|
|
post_remove() {
|
|
groupdel kinky
|
|
}
|