[freeside-commits] freeside/FS/bin freeside-adduser,1.10,1.11
Ivan,,,
ivan at wavetail.420.am
Fri Jun 30 07:30:29 PDT 2006
Update of /home/cvs/cvsroot/freeside/FS/bin
In directory wavetail:/tmp/cvs-serv12776
Modified Files:
freeside-adduser
Log Message:
checkin freeside-adduser with the -g flag! sheesh
Index: freeside-adduser
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/bin/freeside-adduser,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- freeside-adduser 13 Apr 2006 21:29:01 -0000 1.10
+++ freeside-adduser 30 Jun 2006 14:30:26 -0000 1.11
@@ -3,25 +3,25 @@
# $Id$
use strict;
-use vars qw($opt_h $opt_b $opt_c $opt_s);
+use vars qw($opt_h $opt_b $opt_c $opt_g);
use Fcntl qw(:flock);
use Getopt::Std;
my $FREESIDE_CONF = "/usr/local/etc/freeside";
-getopts("bch:s:");
+getopts("bch:g:");
die &usage if $opt_c && ! $opt_h;
my $user = shift or die &usage;
-if ( -e "$FREESIDE_CONF/mapsecrets" ) {
- open(MAPSECRETS,"<$FREESIDE_CONF/mapsecrets")
- or die "can't open $FREESIDE_CONF/mapsecrets: $!";
- while (<MAPSECRETS>) {
- /^(\S+) / or die "unparsable line in mapsecrets: $_";
- die "user $user already exists\n" if $user eq $1;
- }
- close MAPSECRETS;
-}
+#if ( -e "$FREESIDE_CONF/mapsecrets" ) {
+# open(MAPSECRETS,"<$FREESIDE_CONF/mapsecrets")
+# or die "can't open $FREESIDE_CONF/mapsecrets: $!";
+# while (<MAPSECRETS>) {
+# /^(\S+) / or die "unparsable line in mapsecrets: $_";
+# die "user $user already exists\n" if $user eq $1;
+# }
+# close MAPSECRETS;
+#}
if ( $opt_h ) {
my @args = ( 'htpasswd' );
@@ -32,16 +32,49 @@
system(@args) == 0 or die "htpasswd failed: $?";
}
-my $secretfile = $opt_s || 'secrets';
+#my $secretfile = $opt_s || 'secrets';
+#
+#open(MAPSECRETS,">>$FREESIDE_CONF/mapsecrets")
+# and flock(MAPSECRETS,LOCK_EX)
+# or die "can't open $FREESIDE_CONF/mapsecrets: $!";
+#print MAPSECRETS "$user $secretfile\n";
+#close MAPSECRETS or die "can't close $FREESIDE_CONF/mapsecrets: $!";
-open(MAPSECRETS,">>$FREESIDE_CONF/mapsecrets")
- and flock(MAPSECRETS,LOCK_EX)
- or die "can't open $FREESIDE_CONF/mapsecrets: $!";
-print MAPSECRETS "$user $secretfile\n";
-close MAPSECRETS or die "can't close $FREESIDE_CONF/mapsecrets: $!";
+###
+
+use FS::UID qw(adminsuidsetup);
+use FS::CurrentUser;
+use FS::access_user;
+use FS::access_usergroup;
+
+$FS::CurrentUser::upgrade_hack = 1;
+#adminsuidsetup $rootuser;
+adminsuidsetup $user;
+
+my $access_user = new FS::access_user {
+ 'username' => $user,
+ '_password' => 'notyet',
+ 'first' => 'Firstname', # $opt_f ||
+ 'last' => 'Lastname', # $opt_l ||
+};
+my $au_error = $access_user->insert;
+die $au_error if $au_error;
+
+if ( $opt_g ) {
+
+ my $access_usergroup = new FS::access_usergroup {
+ 'usernum' => $access_user->usernum,
+ 'groupnum' => $opt_g,
+ };
+ my $aug_error = $access_usergroup->insert;
+ die $aug_error if $aug_error;
+
+}
+
+###
sub usage {
- die "Usage:\n\n freeside-adduser [ -h htpasswd_file [ -c ] [ -b ] ] [ -s secretfile ] username"
+ die "Usage:\n\n freeside-adduser [ -h htpasswd_file [ -c ] [ -b ] ] [ -g groupnum ] username"
}
=head1 NAME
@@ -50,7 +83,7 @@
=head1 SYNOPSIS
- freeside-adduser [ -h htpasswd_file [ -c ] ] [ -s secretfile ] username
+ freeside-adduser [ -h htpasswd_file [ -c ] ] -g 1 username
=head1 DESCRIPTION
@@ -61,10 +94,10 @@
-c: Passed to htpasswd(1)
- -s: Specify an alternate secret file
-
-b: same as htpasswd(1), probably insecure, not recommended
+ -g: initial groupnum
+
=head1 SEE ALSO
L<htpasswd>(1), base Freeside documentation
More information about the freeside-commits
mailing list