blob: 1d5ed0e5ad43a7397a928287a80ca1e09f0b5476 (
plain)
1
2
3
4
5
6
7
8
9
10
|
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 ombi\`\n"
}
post_upgrade() {
post_install "${1}"
}
|