Package: sbackup
Version: 0.10.2
Severity: normal
Tags: patch
Hi,
postinst script tried to change permission of /etc/sbackup.conf to root:admin.
admin group doesnt exist on the (my) system.
I think [tm] it should be root:adm (patch attached).
Or - maybe - the existence of the gorup should be tested and the group created
if the spelling is right.
Regards
Jean-Luc
-- System Information:
Debian Release: testing/unstable
APT prefers unstable
APT policy: (900, 'unstable')
Architecture: amd64 (x86_64)
Shell: /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-k8-3
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Versions of packages sbackup depends on:
ii gksu 2.0.0-1 graphical frontend to su
ii python 2.4.3-11 An interactive high-level object-o
ii python-glade2 2.8.6-6 GTK+ bindings: Glade support
ii python-gnome2 2.12.4-5 Python bindings for the GNOME desk
ii sudo 1.6.8p12-4 Provide limited super user privile
sbackup recommends no packages.
-- no debconf information
--- sbackup.postinst.orig 2006-10-07 09:27:31.527894957 +0200
+++ sbackup.postinst 2006-10-07 09:30:11.490797090 +0200
@@ -22,7 +22,7 @@
if test ! -e /etc/sbackup.conf; then
cp /usr/share/doc/sbackup/examples/sbackup.conf.example
/etc/sbackup.conf;
fi
- chown -f root.admin /etc/sbackup.conf
+ chown -f root.adm /etc/sbackup.conf
chmod -f 640 /etc/sbackup.conf
;;