home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / var / lib / dpkg / info / tcpd.config < prev    next >
Encoding:
Text File  |  2006-07-01  |  254 b   |  14 lines

  1. #!/bin/sh -e
  2.  
  3. # Only ask about the configuration if there are no hosts.{allow,deny} files
  4.  
  5. if [ ! -e /etc/hosts.allow ] && [ ! -e /etc/hosts.deny ]; then
  6.   . /usr/share/debconf/confmodule
  7.   db_input medium tcpd/paranoid-mode || true
  8.   db_go
  9. fi
  10.  
  11.  
  12.  
  13. exit 0
  14.