projects
/
scpubgit/System-Introspector.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
6f6746d
)
command invocation fix
Robert 'phaylon' Sedlacek [Fri, 11 May 2012 17:24:35 +0000 (17:24 +0000)]
lib/System/Introspector/Users.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/System/Introspector/Users.pm
b/lib/System/Introspector/Users.pm
index
4510c6c
..
eeeb3a5
100644
(file)
--- a/
lib/System/Introspector/Users.pm
+++ b/
lib/System/Introspector/Users.pm
@@
-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] };
}