View | Details | Raw Unified
Collapse All | Expand All

(-) debianutils-2.14.1/run-parts.8 (-2 / +4 lines)
 Lines 26-33    Link Here 
Other files and directories are silently ignored.
Other files and directories are silently ignored.
If the \-\-lsbsysinit option is not given then the names must consist
If the \-\-lsbsysinit option is not given then the names must consist
entirely of upper and lower case letters, digits, underscores, and
entirely of upper and lower case letters, digits, underscores, hyphens
hyphens.                           
and periods. However, the name must not begin with a period. 
                                                                                
                                                                                
If the \-\-lsbsysinit option is given, then the names must not end
If the \-\-lsbsysinit option is given, then the names must not end
in .dpkg\-old  or .dpkg\-dist or .dpkg\-new or .dpkg\-tmp, and must
in .dpkg\-old  or .dpkg\-dist or .dpkg\-new or .dpkg\-tmp, and must
 Lines 103-108    Link Here 
Copyright (C) 1996, 1997, 1998 Guy Maor
Copyright (C) 1996, 1997, 1998 Guy Maor
.P
.P
Copyright (C) 2002, 2003, 2004 Clint Adams
Copyright (C) 2002, 2003, 2004 Clint Adams
.P
Copyright (C) 2005 Gentoo Foundation
.B run\-parts
.B run\-parts
is free software; see the GNU General Public License version 2 or
is free software; see the GNU General Public License version 2 or
(-) debianutils-2.14.1/run-parts.c (-1 / +3 lines)
 Lines 4-9    Link Here 
 * Copyright (C) 1996 Jeff Noxon <jeff@router.patch.net>,
 * Copyright (C) 1996 Jeff Noxon <jeff@router.patch.net>,
 * Copyright (C) 1996-1999 Guy Maor <maor@debian.org>
 * Copyright (C) 1996-1999 Guy Maor <maor@debian.org>
 * Copyright (C) 2002, 2003, 2004, 2005 Clint Adams <schizo@debian.org>
 * Copyright (C) 2002, 2003, 2004, 2005 Clint Adams <schizo@debian.org>
 * Copyright (C) 2005 Gentoo Foundation <base-system@gentoo.org>
 *
 *
 * This is free software; see the GNU General Public License version 2
 * This is free software; see the GNU General Public License version 2
 * or later for copying conditions.  There is NO warranty.
 * or later for copying conditions.  There is NO warranty.
 Lines 63-68    Link Here 
	  "\nCopyright (C) 1994 Ian Jackson, Copyright (C) 1996 Jeff Noxon.\n"
	  "\nCopyright (C) 1994 Ian Jackson, Copyright (C) 1996 Jeff Noxon.\n"
	  "Copyright (C) 1996,1997,1998,1999 Guy Maor\n"
	  "Copyright (C) 1996,1997,1998,1999 Guy Maor\n"
	  "Copyright (C) 2002, 2003, 2004, 2005 Clint Adams\n"
	  "Copyright (C) 2002, 2003, 2004, 2005 Clint Adams\n"
	  "Copyright (C) 2005 Gentoo Foundation\n"
	  "This is free software; see the GNU General Public License version 2\n"
	  "This is free software; see the GNU General Public License version 2\n"
	  "or later for copying conditions.  There is NO warranty.\n");
	  "or later for copying conditions.  There is NO warranty.\n");
  exit(0);
  exit(0);
 Lines 146-152    Link Here 
    return !regexec(&tradre, c, 0, NULL, 0);
    return !regexec(&tradre, c, 0, NULL, 0);
  }
  }
  else {
  else {
    if (regcomp(&classicalre, "^[a-zA-Z0-9_-]+$", REG_EXTENDED | REG_NOSUB)) {
    if (regcomp(&classicalre, "^[a-zA-Z0-9_-][a-zA-Z0-9._-]+$", REG_EXTENDED | REG_NOSUB)) {
      error("regex failure");
      error("regex failure");
      exit(1);
      exit(1);
    }
    }