mirror of
https://github.com/beard7n/bsdports.git
synced 2026-04-10 10:31:20 +02:00
21 lines
375 B
Bash
Executable File
21 lines
375 B
Bash
Executable File
#! /bin/sh
|
|
|
|
WWWDIR=%%WWWDIR%%
|
|
|
|
case $2 in
|
|
|
|
POST-INSTALL)
|
|
# for i in ${WWWDIR}/config/db.inc.php ${WWWDIR}/config/main.inc.php; do
|
|
# [ -f ${i} ] || cp ${i}.dist ${i}
|
|
# done
|
|
# chown -R ${WWWOWN}:${WWWGRP} ${WWWDIR}/
|
|
# ;;
|
|
DEINSTALL)
|
|
# for i in ${WWWDIR}/config/db.inc.php ${WWWDIR}/config/main.inc.php; do
|
|
# if cmp -s ${i} ${i}.dist; then rm ${i}; fi
|
|
# done
|
|
# ;;
|
|
esac
|
|
|
|
exit 0
|