home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 February / PCWorld_2000-02_cd.bin / live / usr / sbin / update-inetd < prev    next >
Text File  |  1998-12-05  |  5KB  |  150 lines

  1. #!/usr/bin/perl
  2. #
  3. # update-inetd: a utility to add entries to the /etc/inetd.conf file
  4. #
  5. # Copyright (C) 1995 Peter Tobias <tobias@et-inf.fho-emden.de>
  6. #
  7. #    update-inetd is free software; you can redistribute it and/or modify
  8. #    it under the terms of the GNU General Public License as published
  9. #    by the Free Software Foundation; either version 2 of the License,
  10. #    or (at your option) any later version.
  11. #
  12. #    update-inetd is distributed in the hope that it will be useful, but
  13. #    WITHOUT ANY WARRANTY; without even the implied warranty of
  14. #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  15. #    General Public License for more details.
  16. #
  17. #    You should have received a copy of the GNU General Public License
  18. #    along with update-inetd; if not, write to the Free Software Foundation,
  19. #    Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20. #
  21.  
  22. require 5.000;
  23. require DebianNet;
  24.  
  25. $version = "1.11";
  26.  
  27. $0 =~ s#.*/##;
  28.  
  29. while ($ARGV[0] =~ m/^-/) {
  30.     $_ = shift(@ARGV);
  31.     if (/--help$/) {
  32.         &usage;
  33.     } elsif (/--version$/) {
  34.         &version;
  35.     } elsif (/--add$/) {
  36.         $mode="add";
  37.     } elsif (/--remove$/) {
  38.         $mode="remove";
  39.     } elsif (/--enable$/) {
  40.         $mode="enable";
  41.     } elsif (/--disable$/) {
  42.         $mode="disable";
  43.     } elsif (/--multi$/) {
  44.         $DebianNet::multi = "true";
  45.     } elsif (/--verbose$/) {
  46.         $DebianNet::verbose = "true";
  47.     } elsif (/--debug$/) {
  48.         $debug = "true";
  49.     } elsif (/--file$/) {
  50.         $file = shift(@ARGV);
  51.         die "$0: Option \`--file' requires an argument\n" unless ($file and not ($file =~ m/^--/));
  52.         $DebianNet::inetdcf = $file;
  53.     } elsif (/--group$/) {
  54.         $group = shift(@ARGV);
  55.         die "$0: Option \`--group' requires an argument\n" unless ($group and not ($group =~ m/^--/));
  56.     } elsif (/--comment-chars$/) {
  57.         $sep = shift(@ARGV);
  58.         die "$0: Option \`--comment-chars' requires an argument\n" unless ($sep);
  59.         die "$0: The comment characters do not start with a \`#'!\n" unless ($sep =~ /^#/);
  60.         $DebianNet::sep = $sep;
  61.     } elsif (/--pattern$/) {
  62.         $pattern = shift(@ARGV);
  63.         die "$0: Option \`--pattern' requires an argument\n" unless ($pattern and not ($pattern =~ m/^--/));
  64.     } else {
  65.         print "$0: Unknown option: $_\n";
  66.         print "Try \`$0 --help' for more information.\n";
  67.         exit(1);
  68.     }
  69. }
  70.  
  71. $group = "OTHER" unless ($group);
  72.  
  73. &usage unless($mode);
  74.  
  75. # die "You must be root to run this script.\n" if ($> != 0);
  76.  
  77. if ($#ARGV > 0) {
  78.     print "Too many arguments!\n";
  79. } elsif ($#ARGV == -1) {
  80.     print "Too few arguments!\n";
  81. } else {
  82.     $modearg = $ARGV[0];
  83.     die "The service name may not include a whitespace character!\n" if (($mode eq "enable" or $mode eq "disable") and ($modearg =~ /\s+|\\t/));
  84.     die "The entry definition does not contain any whitespace characters!\n" if ($mode eq "add" and not ($modearg =~ /\s+|\\t/));
  85. }
  86.  
  87. print "Processing $DebianNet::inetdcf\n" if (defined($DebianNet::verbose));
  88. print "Using mode \"$mode\", group \"$group\", pattern \"$pattern\" and seperator \"$DebianNet::sep\"\n" if (defined($debug));
  89. print "Multiple remove/disable: $DebianNet::multi\n" if (defined($debug) and defined($DebianNet::multi));
  90. print "ARGUMENT: $modearg\n" if (defined($debug));
  91.  
  92. if ($mode eq "add") {
  93.     DebianNet::add_service($modearg, $group);
  94. } elsif ($mode eq "remove") {
  95.     DebianNet::remove_service($modearg);
  96. } elsif ($mode eq "enable") {
  97.     @arglst = split(/,/, $modearg);
  98.     while(@arglst) {
  99.         $_ = shift(@arglst);
  100.         DebianNet::enable_service($_, $pattern);
  101.     }
  102. } elsif ($mode eq "disable") {
  103.     @arglst = split(/,/, $modearg);
  104.     while(@arglst) {
  105.         $_ = shift(@arglst);
  106.         DebianNet::disable_service($_, $pattern);
  107.     }
  108. } else {
  109.     die "Mode = \`$modearg'? This should not happen!\n";
  110. }
  111.  
  112. sub version {
  113.     print "$0 $version\n";
  114.     print "DebianNet module $DebianNet::version\n";
  115.     exit(0);
  116. }
  117.  
  118. sub usage {
  119.     print <<EOF;
  120. Usage: $0 [OPTION] MODE ARGUMENT
  121.  
  122. Options:
  123.   --version                       output version information and exit
  124.   --help                          display this help and exit
  125.   --verbose                       explain what is being done
  126.   --debug                         enables debugging mode
  127.   --multi                         allow multiple removes/disables
  128.   --file FILENAME                 use FILENAME instead of /etc/inetd.conf
  129.   --group GROUPNAME               add entry to section GROUPNAME
  130.   --comment-chars CHARACTERS      use CHARACTERS as comment characters
  131.   --pattern PATTERN               use PATTERN to select a service
  132.  
  133. Modes:
  134.   --add ENTRY                     add ENTRY to $DebianNet::inetdcf
  135.   --remove ENTRY                  remove ENTRY (regular expression)
  136.   --enable SERVICE                enable SERVICE in $DebianNet::inetdcf
  137.   --disable SERVICE               disable SERVICE in $DebianNet::inetdcf
  138.  
  139. In order to prevent the shell from changing your ENTRY definition
  140. you have to quote the ENTRY using single or double quotes. You can
  141. use tabs (the tab character or \\t) and spaces to separate the fields
  142. of the ENTRY. If you want to enable/disable more than one SERVICE you
  143. can use a comma separated list of services (no whitespace characters
  144. allowed).
  145.  
  146. EOF
  147.     exit(0);
  148. }
  149.  
  150.