You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
453 B
20 lines
453 B
#!/usr/bin/perl -w
|
|
|
|
use strict;
|
|
use warnings;
|
|
use esmith::AccountsDB;
|
|
|
|
my $a = esmith::AccountsDB->open or die "Couldn't open AccountsDB\n";
|
|
|
|
my $pseudo = $a->get('listreports');
|
|
|
|
if (!$pseudo){
|
|
$a->new_record('listreports',{
|
|
type => 'pseudonym',
|
|
Account => 'admin'
|
|
});
|
|
unless ( system("/sbin/e-smith/signal-event", "pseudonym-create", "listreports") == 0 ){
|
|
die "Failed to create pseudonym listreports\n";
|
|
}
|
|
}
|
|
|
|
|