2010-05-22 06:07:29 +08:00
|
|
|
post_install () {
|
2012-09-09 07:24:13 +08:00
|
|
|
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
|
2010-05-22 06:07:29 +08:00
|
|
|
}
|
2012-08-29 15:31:09 +08:00
|
|
|
|
2012-09-09 07:24:13 +08:00
|
|
|
post_upgrade () {
|
|
|
|
# Repeat install message due to policy changes
|
|
|
|
post_install
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|