blob: f8cccebe97890a5326c6dd608975a8cbf2854d01 (
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
|
post_install() {
echo -e "\n Read the .service file if you encounter any edge cases"
echo -e "\n 1. This package now comes with a shared group 'media'"
echo -e " Override if necessary."
echo -e "\n Overriding is done with \`systemctl edit jellyseerr\`\n"
}
post_upgrade() {
post_install "${1}"
}
pre_install() {
if [[ -L var/lib/jellyseerr ]]; then
rm var/lib/jellyseerr
mv -r usr/lib/jellyseerr/config/ var/lib/jellyseerr
fi
if [[ -L var/log/jellyseerr ]]; then
rm var/log/jellyseerr
fi
}
pre_upgrade() {
pre_install "${1}"
}
|