#!/bin/sh # postinst script for test # # see: dh_installdeb(1) # TODO: For now disable "set -e" since I have not figured out how to get sqlite3 to SHUT UP! #set -e # summary of how this script can be called: # * `configure' # * `abort-upgrade' # * `abort-remove' `in-favour' # # * `abort-remove' # * `abort-deconfigure' `in-favour' # `removing' # # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package configure() { DATE=$(date --rfc-3339='date') CONFIG_BACKUP=/etc/OpenBTS/OpenBTS.dump-$DATE if [ ! -e $CONFIG_BACKUP ]; then sqlite3 /etc/OpenBTS/OpenBTS.db ".dump" > $CONFIG_BACKUP fi sqlite3 /etc/OpenBTS/OpenBTS.db ".read /etc/OpenBTS/OpenBTS.example.sql" > /dev/null 2>&1 chown openbts:openbts /home/openbts/CLI chown openbts:openbts /home/openbts/openbtsconfig chown openbts:openbts /home/openbts/startBTS chown openbts:openbts /home/openbts/killBTS } case "$1" in configure) configure ;; abort-upgrade|abort-remove|abort-deconfigure) ;; *) echo "postinst called with unknown argument \`$1'" >&2 exit 1 ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0