ngircd.postinst 267 B

1234567891011121314
  1. #!/bin/sh
  2. #
  3. # Debian post-installation script
  4. # $Id: ngircd.postinst,v 1.1 2003/12/31 17:20:11 alex Exp $
  5. #
  6. if [ -f /etc/ngircd/ngircd.conf ]; then
  7. # make sure that configuration file is not world readable
  8. chmod o= /etc/ngircd/ngircd.conf
  9. fi
  10. #DEBHELPER#
  11. # -eof-