mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 09:37:14 +08:00
24 lines
548 B
Plaintext
24 lines
548 B
Plaintext
post_install () {
|
|
cat <<MSG
|
|
> The daemon is automatically started, but can be manually
|
|
cdemu-daemon.service.
|
|
> See /etc/conf.d/cdemud for further configuration.
|
|
|
|
> Only users at the console or in the 'cdemu' group can
|
|
communicate with the system daemon or use a session
|
|
daemon.
|
|
|
|
> If you want to output CD-Audio, write AUDIO_DRIVER=pulse
|
|
to ~/.cdemud and use "cdemu -b session" to control a session daemon.
|
|
MSG
|
|
|
|
return 0
|
|
}
|
|
|
|
post_upgrade () {
|
|
# Repeat install message due to policy changes
|
|
post_install
|
|
|
|
return 0
|
|
}
|