22 lines
601 B
Text
22 lines
601 B
Text
post_install() {
|
|
chown -R http:http /var/lib/webapps/freshrss
|
|
echo 'You can now configure your (PHP compatible) web server to run FreshRSS'
|
|
}
|
|
|
|
pre_upgrade() {
|
|
# Move data dir to new location if needed
|
|
if [ ! -d /var/lib/webapps/freshrss/data ] ; then
|
|
# dir not yet created
|
|
install -dm 700 /var/lib/webapps/freshrss
|
|
mv /usr/share/webapps/freshrss/data /var/lib/webapps/freshrss/data
|
|
chown -R http:http /var/lib/webapps/freshrss
|
|
|
|
echo 'Datadir has been automatically moved to /var/lib/webapps/freshrss/data'
|
|
fi
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|