Difference between revisions of "Create an ibay manually"
From SME Server
Jump to navigationJump to search (Page init) |
|||
(One intermediate revision by the same user not shown) | |||
Line 3: | Line 3: | ||
#!/bin/bash | #!/bin/bash | ||
− | # | + | #Get correct Uid |
− | + | uid=`perl -Mesmith::AccountsDB -e 'my $accountdb = esmith::AccountsDB->open(); print $accountdb->get_next_uid();'` | |
− | |||
− | |||
− | |||
#Populate the accounts db | #Populate the accounts db | ||
db accounts set test ibay Name test \ | db accounts set test ibay Name test \ | ||
Group admin UserAccess wr-group-rd-everyone \ | Group admin UserAccess wr-group-rd-everyone \ | ||
− | Uid $ | + | Uid $uid Gid $uid CgiBin enabled PasswordSet no \ |
SSL enabled PublicAccess global \ | SSL enabled PublicAccess global \ | ||
Line 19: | Line 16: | ||
exit | exit | ||
+ | |||
+ | Todo: | ||
+ | * Add a test to see if the ibay name already exists |
Latest revision as of 13:14, 9 March 2017
If you would like to create an ibay by means of a bash script:
#!/bin/bash #Get correct Uid uid=`perl -Mesmith::AccountsDB -e 'my $accountdb = esmith::AccountsDB->open(); print $accountdb->get_next_uid();'` #Populate the accounts db db accounts set test ibay Name test \ Group admin UserAccess wr-group-rd-everyone \ Uid $uid Gid $uid CgiBin enabled PasswordSet no \ SSL enabled PublicAccess global \ #Create the "test" ibay signal-event ibay-create test exit
Todo:
- Add a test to see if the ibay name already exists