blob: cdbedb8a148c99d321e89f62f93a51dad55a0135 (
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
28
29
30
31
32
33
34
|
post_install() {
cat << EOM
--> It is recommended to use qjackctl as a controlling frontend for the
--> audio server. The extended rights for realtime capabilities can be
--> granted based on groups or a per user base in
--> /etc/security/limits.conf
--> The audio server comes with a daemon script that runs it as root.
--> Configuration happens in /etc/conf.d/jack-audio-connection-kit and is
--> documented there.
--> NOTE: Running jack as root to enable realtime capabilities isn't
--> needed any longer.
EOM
}
post_upgrade() {
post_install $1
}
pre_remove() {
/bin/true
}
post_remove() {
/bin/true
}
op=$1
shift
$op $*
|