#%% begin initialize 
for f in system-account system-auth system-password system-session other halt
do
  if [ ! -f /etc/pam.d/$f ]; then
    cp /etc/pam.d.dist/$f /etc/pam.d/$f
  fi
done
for f in reboot poweroff
do
  if [ ! -f /etc/pam.d/$f ]; then
    cp /etc/pam.d/halt /etc/pam.d/$f
  fi
done
if [ ! -f /etc/securetty ]; then
  cp /etc/securetty.dist /etc/securetty
fi 
#%% end
