mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-07 04:17:14 +08:00
10 lines
302 B
Plaintext
10 lines
302 B
Plaintext
|
post_install () {
|
||
|
echo ">> Place 'cdemud' in DAEMONS= in /etc/rc.conf to enable cdemud on system boot."
|
||
|
echo ">> If the alsa-lib package is installed, cdemud can use the ALSA audio backend"
|
||
|
echo ">> (edit /etc/conf.d/cdemud to enable this)."
|
||
|
groupadd cdemu
|
||
|
}
|
||
|
post_remove() {
|
||
|
groupdel cdemu
|
||
|
}
|