diff --git a/src/alternc_lxc_remote b/src/alternc_lxc_remote index a84e216f..a06fcba4 100755 --- a/src/alternc_lxc_remote +++ b/src/alternc_lxc_remote @@ -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);