blob: 7dbb79c80293a58e080d6cc8d2606673176fae03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
post_install() {
echo "Now you must install o configure your web server (PHP Compatible) to run Wordpress"
}
pre_remove() {
cp -r /srv/http/hoteldruid /srv/http/hoteldruid_backup
echo "Your HotelDruid folder was backed up to /srv/http/hoteldruid_backup"
}
post_remove() {
rm -rf /srv/http/hoteldruid
}
|