blob: 9cecafbe6b9d500123563e89cf4fba86adddcb82 (
plain)
1
2
3
4
5
6
7
8
9
10
|
post_install() {
echo "Run 'nginx-ensite [site] [priority]' to enable a site"
echo "Run 'nginx-dissite [site]' to disable a site"
echo "If you do not specify the name of a site you will be asked to do so."
echo -e "\nThe configuration is stored in the '/etc/conf.d/nginx-site.conf'"
echo "If you modify nginx-site.conf check /etc/bash_completion.d/nginx-site"
}
post_upgrade() {
post_install
}
|