3 # $Id: freeside-adduser,v 1.4 2002-02-06 14:58:05 ivan Exp $
6 use vars qw($opt_h $opt_c $opt_s);
9 my $FREESIDE_CONF = "/usr/local/etc/freeside";
12 die &usage if $opt_c && ! $opt_h;
13 my $user = shift or die &usage;
16 my @args = ( 'htpasswd' );
17 push @args, '-c' if $opt_c;
18 push @args, $opt_h, $user;
19 system(@args) == 0 or die "htpasswd failed: $?";
22 my $secretfile = $opt_s || 'secrets';
24 open(MAPSECRETS,">>$FREESIDE_CONF/mapsecrets")
25 or die "can't open $FREESIDE_CONF/mapsecrets: $!";
26 print MAPSECRETS "$user $secretfile\n";
27 close MAPSECRETS or die "can't close $FREESIDE_CONF/mapsecrets: $!";
30 die "Usage:\n\n freeside-adduser [ -h htpasswd_file [ -c ] ] [ -s secretfile ] username"
35 freeside-adduser - Command line interface to add (freeside) users.
39 freeside-adduser [ -h htpasswd_file [ -c ] ] [ -s secretfile ] username
43 Adds a user to the Freeside billing system. This is for adding users (internal
44 sales/tech folks) to the web interface, not for adding customer accounts.
46 -h: Also call htpasswd for this user with the given filename
48 -c: Passed to htpasswd
50 -s: Specify an alternate secret file
54 L<htpasswd>, base Freeside documentation