Changed default filenames to start with '.ht'.
1 parent dc35a43 commit 7f8a9984de55bce683d72a046d3ef2302c8c8ff0
@root root authored on 1 Apr 2005
Showing 1 changed file
View
10
mkapachepw.py
 
# Program Information
 
PROGNAME = "mkapachepw"
RCSID = "$Id: mkapachepw.py,v 1.104 2005/04/01 22:30:33 root Exp $"
RCSID = "$Id: mkapachepw.py,v 1.105 2005/04/02 00:26:03 root Exp $"
VERSION = RCSID.split()[2]
 
# Copyright Information
 
#----------------------------------------------------------#
# Variables User Might Change #
#----------------------------------------------------------#
 
GRFILE = "./groups" # Group output file
PWFILE = "./passwords" # Password output file
STARTUID = 100 # User IDs below this ignored
STARTGID = 100 # Group IDS below this ignored
GRFILE = "./.htgroups" # Group output file
PWFILE = "./.htpasswords" # Password output file
STARTUID = 100 # User IDs below this ignored
STARTGID = 100 # Group IDS below this ignored
 
 
 
#------------------- Nothing Below Here Should Need Changing ------------------#