#!/bin/sh set -e if [ configure != "$1" ] ; then exit 0 fi # passwd 961025-1 incorrectly did permfix on sulogin and xdm-shadow in # shadowconfig permfix () { [ -f $1 ] || return 0 chown root:root $1 chmod 755 $1 } permfix /sbin/sulogin permfix /usr/X11R6/bin/xdm-shadow # check password and group files at boot time update-rc.d passwd start 60 S . >/dev/null grep -q '^shadow:[^:]*:42' /etc/group && exit 0 groupadd -g 42 shadow || ( cat <