command invocation fix
Robert 'phaylon' Sedlacek [Fri, 11 May 2012 17:24:35 +0000 (17:24 +0000)]
lib/System/Introspector/Users.pm

index 4510c6c..eeeb3a5 100644 (file)
@@ -65,7 +65,7 @@ sub _gather_ssh_keys {
 
 sub _gather_user_groups {
     my ($self, $user) = @_;
-    my $groups = output_from_command "groups $user";
+    my $groups = output_from_command [groups => $user];
     return { list => [split m{\s+}, $groups] };
 }