blob: 6dfb15fe74aacde43cc8f9d02fb31ccda4896b3a (
plain)
1
2
3
4
5
6
7
8
9
10
|
post_install() {
# Make data writable by webserver
chown -R http:http /usr/share/webapps/cops
echo 'You can now configure your (PHP compatible) web server to run COPS'
echo 'Be sure to put your metadata.db inside /etc/webapps/cops if you have one'
}
post_upgrade() {
post_install
}
|