pkg://aegis_4.2-1_powerpc.deb:2475572/postinst
info downloads
#!/bin/sh -e
# set permissions properly
# These files need to be 4755 root.root for aegis to work properly
AEGIS_EXEC="/usr/bin/aegis /usr/bin/aeimport"
# These files/dirs need to be 2755 sys.sys for aegis to work properly
AEGIS_SYS="/var/lib/aegis"
for item in $AEGIS_EXEC; do
chmod 4755 $item
chown root.root $item
done
for item in $AEGIS_SYS; do
chmod 2755 $item
chown sys.sys $item
done
# Automatically added by dh_installdocs
if [ "$1" = "configure" ]; then
if [ -d /usr/doc -a ! -e /usr/doc/aegis -a -d /usr/share/doc/aegis ]; then
ln -sf ../share/doc/aegis /usr/doc/aegis
fi
fi
# End automatically added section