| 
301
 | 
     1 #!/bin/sh
 | 
| 
428
 | 
     2 # $Id: postinst 571 2003-06-20 17:04:24Z godisch $
 | 
| 
301
 | 
     3 
 | 
| 
 | 
     4 set -e
 | 
| 
324
 | 
     5 
 | 
| 
 | 
     6 [ "$1" = configure ] || exit 0
 | 
| 
301
 | 
     7 
 | 
| 
 | 
     8 maxfetch_default=300
 | 
| 
 | 
     9 defexpire_default=14
 | 
| 
 | 
    10 
 | 
| 
324
 | 
    11 if dpkg --compare-versions "$2" lt-nl 1.1.2-1; then
 | 
| 
398
 | 
    12 	echo
 | 
| 
425
 | 
    13 	echo "/etc/noffle/conf moved to /etc/news/noffle.conf, /etc/noffle/conf.debian"
 | 
| 
 | 
    14 	echo "moved to /etc/default/noffle. /etc/noffle and /var/log/noffle are not"
 | 
| 
324
 | 
    15 	echo "used any longer, you may remove them. noffle expiration logs are"
 | 
| 
 | 
    16 	echo "still available through syslog."
 | 
| 
398
 | 
    17 	echo
 | 
| 
324
 | 
    18 	sleep 2
 | 
| 
428
 | 
    19 	mv -fb /etc/noffle/conf /etc/news/noffle.conf || :
 | 
| 
 | 
    20 	mv -fb /etc/noffle/conf.debian /etc/default/noffle || :
 | 
| 
 | 
    21 	mv -fb /etc/noffle/conf.old /etc/news/noffle.conf.old 2> /dev/null || :
 | 
| 
 | 
    22 	mv -fb /etc/noffle/conf.debian.old /etc/default/noffle.old 2> /dev/null || :
 | 
| 
398
 | 
    23 	rmdir --ignore-fail-on-non-empty /etc/noffle
 | 
| 
324
 | 
    24 fi
 | 
| 
 | 
    25 
 | 
| 
 | 
    26 if dpkg --compare-versions "$2" eq 1.1.2-1; then
 | 
| 
 | 
    27 	# 1.1.2-1 was in unstable only, don't notify
 | 
| 
428
 | 
    28 	mv -fb /etc/noffle.conf /etc/news/noffle.conf || :
 | 
| 
 | 
    29 	mv -fb /etc/noffle.conf.old /etc/news/noffle.conf.old 2> /dev/null || :
 | 
| 
324
 | 
    30 fi
 | 
| 
 | 
    31 
 | 
| 
395
 | 
    32 if [ -e /usr/share/debconf/confmodule ]; then
 | 
| 
 | 
    33 	. /usr/share/debconf/confmodule
 | 
| 
 | 
    34 	db_version 2.0
 | 
| 
425
 | 
    35 
 | 
| 
 | 
    36 	db_get noffle/server
 | 
| 
 | 
    37 	server="$RET"
 | 
| 
 | 
    38 	[ "$server" ] || server=news
 | 
| 
 | 
    39 	db_get noffle/username
 | 
| 
 | 
    40 	username="$RET"
 | 
| 
 | 
    41 	db_get noffle/password
 | 
| 
 | 
    42 	password="$RET"
 | 
| 
 | 
    43 	db_get noffle/fetchmode
 | 
| 
 | 
    44 	fetchmode="$RET"
 | 
| 
 | 
    45 	[ "$fetchmode" ] || if [ -x /usr/sbin/pppd ]; then
 | 
| 
 | 
    46 		fetchmode=ppp
 | 
| 
 | 
    47 	else
 | 
| 
 | 
    48 		fetchmode=cron
 | 
| 
301
 | 
    49 	fi
 | 
| 
425
 | 
    50 	db_get noffle/maxfetch
 | 
| 
 | 
    51 	maxfetch="$RET"
 | 
| 
 | 
    52 	[ "$maxfetch" ] || maxfetch="$maxfetch_default"
 | 
| 
 | 
    53 	db_get noffle/default-expire
 | 
| 
 | 
    54 	defexpire="$RET"
 | 
| 
 | 
    55 	[ "$defexpire" ] || defexpire="$defexpire_default"
 | 
| 
 | 
    56 
 | 
| 
428
 | 
    57 	# /etc/news/noffle.conf may contain sensitive data for NNTP authentication
 | 
| 
425
 | 
    58 	umask 027
 | 
| 
 | 
    59 	cat /usr/share/noffle/noffle.conf | \
 | 
| 
 | 
    60 		sed "s/^server[[:space:]].*/server $server $username $password/" | \
 | 
| 
 | 
    61 		sed "s/^max-fetch[[:space:]].*/max-fetch $maxfetch/" | \
 | 
| 
 | 
    62 		sed "s/^default-expire[[:space:]].*/default-expire $defexpire/" \
 | 
| 
 | 
    63 		> /etc/news/noffle.conf.new
 | 
| 
 | 
    64 	chgrp news /etc/news/noffle.conf.new
 | 
| 
 | 
    65 	ucf --three-way /etc/news/noffle.conf.new /etc/news/noffle.conf < /dev/tty
 | 
| 
 | 
    66 	rm -f /etc/news/noffle.conf.new
 | 
| 
 | 
    67 
 | 
| 
 | 
    68 	umask 022
 | 
| 
 | 
    69 	cat /usr/share/noffle/conf.debian | \
 | 
| 
 | 
    70 		sed "s/^NOFFLE_FETCHMODE=.*/NOFFLE_FETCHMODE=$fetchmode/" \
 | 
| 
 | 
    71 		> /etc/default/noffle.new
 | 
| 
 | 
    72 	ucf --three-way /etc/default/noffle.new /etc/default/noffle < /dev/tty
 | 
| 
 | 
    73 	rm -f /etc/default/noffle.new
 | 
| 
 | 
    74 
 | 
| 
428
 | 
    75 	db_get noffle/port
 | 
| 
 | 
    76 	port="$RET"
 | 
| 
 | 
    77 	if [ -z "$port" -o "$port" = 119 ]; then
 | 
| 
 | 
    78 		port=nntp
 | 
| 
 | 
    79 	fi
 | 
| 
 | 
    80 	update-inetd --remove "/usr/bin/noffle -r"
 | 
| 
 | 
    81 	update-inetd --group MAIL --add "$port\tstream\ttcp\tnowait\tnews\t/usr/sbin/tcpd /usr/bin/noffle -r"
 | 
| 
 | 
    82 
 | 
| 
395
 | 
    83 	db_stop
 | 
| 
 | 
    84 else
 | 
| 
425
 | 
    85 	ucf --three-way /usr/share/noffle/noffle.conf /etc/news/noffle.conf < /dev/tty
 | 
| 
 | 
    86 	ucf --three-way /usr/share/noffle/conf.debian /etc/default/noffle < /dev/tty
 | 
| 
428
 | 
    87 	port="`grep "/usr/bin/noffle -r" /etc/inetd.conf 2> /dev/null | sed 's/[[:space:]].*$//'`" || :
 | 
| 
 | 
    88 	if [ "$port" ]; then
 | 
| 
 | 
    89 		update-inetd --enable "$port"
 | 
| 
 | 
    90 	else
 | 
| 
416
 | 
    91 		update-inetd --group MAIL --add "nntp\tstream\ttcp\tnowait\tnews\t/usr/sbin/tcpd /usr/bin/noffle -r"
 | 
| 
 | 
    92 	fi
 | 
| 
324
 | 
    93 fi
 | 
| 
301
 | 
    94 
 | 
| 
324
 | 
    95 # sanity checks
 | 
| 
 | 
    96 chown -R news:news /var/lock/noffle /var/spool/noffle
 | 
| 
 | 
    97 chmod -R go-w      /var/lock/noffle /var/spool/noffle
 | 
| 
 | 
    98 find /var/lock/noffle /var/spool/noffle -type d -print0 | xargs -0 chmod g+s
 | 
| 
 | 
    99 
 | 
| 
 | 
   100 # init.d startup
 | 
| 
 | 
   101 update-rc.d noffle defaults > /dev/null
 | 
| 
 | 
   102 if [ -x /usr/sbin/invoke-rc.d ]; then
 | 
| 
 | 
   103 	invoke-rc.d noffle start
 | 
| 
 | 
   104 elif [ -x /etc/init.d/noffle ]; then
 | 
| 
 | 
   105 	/etc/init.d/noffle start
 | 
| 
 | 
   106 fi
 | 
| 
 | 
   107 
 | 
| 
 | 
   108 if [ -z "$2" ]; then
 | 
| 
398
 | 
   109 	echo
 | 
| 
324
 | 
   110 	echo "You need to query your parent NNTP server manually for a group overview"
 | 
| 
 | 
   111 	echo "and descriptions. Have a look at /usr/share/doc/noffle/README.Debian for"
 | 
| 
 | 
   112 	echo "information how to do this."
 | 
| 
398
 | 
   113 	echo
 | 
| 
324
 | 
   114 	sleep 2
 | 
| 
301
 | 
   115 fi
 | 
| 
 | 
   116 
 | 
| 
 | 
   117 exit 0
 |