blob: ba34d1ea0cc8b28bcdb8ad7ba7a7b5bfdf1c8936 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
post_install () {
cat <<MSG
> The daemon is automatically started, but can be manually
started via /etc/rc.d/cdemud or 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 or
AUDIO_DRIVER=alsa to ~/.cdemud and use "cdemu -b session"
to control a session daemon.
MSG
return 0
}
post_upgrade () {
# Repeat install message due to policy changes
# Added on 2012-06-19, remove after a grace period
post_install
return 0
}
# vim:set ts=2 sw=2 et:
|