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