#!/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 grep -q '^shadow:[^:]*:42' /etc/group && exit 0 groupadd -g 42 shadow || ( cat <