now handles exec correctly

This commit is contained in:
François Serman 2013-04-21 13:16:00 +00:00
parent 477c483ee6
commit 5991431b8a
1 changed files with 2 additions and 1 deletions

View File

@ -3,5 +3,6 @@
my $line = <>;
my ($action,$login,$pass,$uid) = split /\|/, $line;
print `alternc_lxc $action $login $pass $uid`;
my @command = ('alternc_lxc', $action, $login, $pass, $uid);
system (@command);