- #!/bin/sh
- set -e
- if [ -f /opt/PingPanel/config.cfg ]
- then
- cp --preserve=all /opt/PingPanel/config.cfg /opt/PingPanel/config.cfg.TMPINST
- fi
- if [ -f /etc/default/pingpanel ]
- then
- cp --preserve=all /etc/default/pingpanel /etc/default/pingpanel.TMPINST
- fi
|