blob: e8dbbb63d2f33cd8e5d392e71b20af50f51868ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# for rAudio
post_install() {
if [[ -e /srv/http/data/camilladsp ]]; then
file=/etc/default/camilladsp
grep -q /etc/ $file && sed -i 's|/etc/|/srv/http/data/|' $file
fi
}
post_upgrade() {
post_install
}
|