pkg://adjtimex_1.26-1_ia64.deb:67098/postinst
info downloads
#! /bin/sh
set -e
# Source debconf library.
. /usr/share/debconf/confmodule
# old scripts
oldfile=/etc/adjtimex.conf
olderfile=/etc/rc.boot/adjtimex
# new starting script
startfile=/etc/init.d/adjtimex
# new configuration file
conffile=/etc/default/adjtimex
create_adjtimex_conf()
{
TICK=10000
FREQ=0
if [ -f $oldfile ]; then
TICK=`awk '
BEGIN{tick=10000;}
/[ \t]*TICK[ \t]*=[ \t]*"?[0-9]+"?/ {
sub(/[ \t]*TICK[ \t]*=[ \t]*"?/,"");
tick=$0+0;
}
END {print tick;}
' $oldfile`
FREQ=`awk '
BEGIN{freq=0;}
/[ \t]*FREQ[ \t]*=[ \t]*"?[0-9]+"?/ {
sub(/[ \t]*FREQ[ \t]*=[ \t]*"?/,"");
freq=$0+0;
}
END {print freq;}
' $oldfile`
# echo "parameters from $oldfile: TICK=$TICK FREQ=$FREQ";
else
if [ -f $olderfile ]; then
TICK=`awk '
BEGIN{tick=10000;}
/[ \t]*TICK[ \t]*=[ \t]*"?[0-9]+"?/ {
sub(/[ \t]*TICK[ \t]*=[ \t]*"?/,"");
tick=$0+0;
}
END {print tick;}
' $olderfile`
FREQ=`awk '
BEGIN{freq=0;}
/[ \t]*FREQ[ \t]*=[ \t]*"?[0-9]+"?/ {
sub(/[ \t]*FREQ[ \t]*=[ \t]*"?/,"");
freq=$0+0;
}
END {print freq;}
' $olderfile`
# echo "parameters from $olderfile: TICK=$TICK FREQ=$FREQ";
fi
fi
if [ -f $conffile ]; then
# echo "using existing $conffile";
true;
else
if [ -d /etc/default ]; then true; else mkdir /etc/default; fi
cat >$conffile <<EOF
# $conffile - configuration file for adjtimex(8)
#
# you may adjust these values manually or by calling /usr/sbin/adjtimexconfig
#
# This file is sourced by $startfile
#
TICK=$TICK
FREQ=$FREQ
EOF
fi
rm -f $oldfile $olderfile
}
case "$1" in
configure)
create_adjtimex_conf
db_get adjtimex/run_daemon
if [ "$RET" = "true" ]; then
update-rc.d adjtimex start 20 S . >/dev/null
if which invoke-rc.d >/dev/null 2>&1; then
invoke-rc.d adjtimex start
else
/etc/init.d/adjtimex start
fi
fi
db_get adjtimex/compare_rtc
if [ "$RET" = "true" ]; then
/usr/sbin/adjtimexconfig
fi
;;
abort-upgrade|abort-remove|abort-deconfigure)
exit 0
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 0
;;
esac