Fix two typo in pseudo create script

This commit is contained in:
Daniel Berteaud 2014-07-31 09:05:18 +02:00
parent 1089c52918
commit d7e9a3044e
1 changed files with 2 additions and 2 deletions

View File

@ -6,14 +6,14 @@ use esmith::AccountsDB;
my $a = esmith::AccountsDB->open or die "Couldn't open AccountsDB\n";
my $peudo = $a->get('listreports');
my $pseudo = $a->get('listreports');
if (!$pseudo){
$a->new_record('listreports',{
type => 'pseudonym',
Account => 'admin'
});
unless ( system("/sbin/e-smith/signal-event", "pseudonym-createe", "listreports") == 0 ){
unless ( system("/sbin/e-smith/signal-event", "pseudonym-create", "listreports") == 0 ){
die "Failed to create pseudonym listreports\n";
}
}