blob: d3f2f92843873d7633fe8c49b86e967caaffde0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
post_install() {
echo " ==> Add the lemurs daemon to system startup with 'rc-update add jellyfind default'"
echo " ==> Start the lemurs daemon now with 'rc-service jellyfind start'"
}
post_upgrade() {
post_install "$1"
}
pre_remove() {
echo " ==> Make sure you run 'rc-update del lemursd default'"
}
|