Kevin Dalley wrote, referring to Bug#18118:
>It would be nice if postgresql upgrade would remove the lines from
>/etc/crontab which were added by previous version of postgresql.
For a while, it did. Nevertheless, it is a violation of policy to
modify /etc/crontab, which is why I have taken it out.
Should I reinstate the removal? It would add these lines to postinst:
if grep -s '^#-- postgresql begin *$' /etc/crontab
then
TMP=`mktemp /tmp/pg.XXXXXX` || exit 1
awk 'BEGIN {found=0}
/^#-- postgresql begin *$/ {found = 1}
/^#-- postgresql end *$/ {found = -1}
{if (!found) print}
{if (found == -1) found=0}' /etc/crontab >$TMP
if [ -f $TMP ]
then
mv $TMP /etc/crontab
fi
fi
--
Oliver Elphick [EMAIL PROTECTED]
Isle of Wight http://www.lfix.co.uk/oliver
PGP key from public servers; key ID 32B8FAA1
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]