diff --git a/cdist/conf/type/__ssh_authorized_keys/explorer/group b/cdist/conf/type/__ssh_authorized_keys/explorer/group index 1bd14840..d259050f 100755 --- a/cdist/conf/type/__ssh_authorized_keys/explorer/group +++ b/cdist/conf/type/__ssh_authorized_keys/explorer/group @@ -35,10 +35,10 @@ else case $owner in [0-9][0-9]*) - gid=$(awk -F: "\$3 == \"${owner}\" { print $4 }" /etc/passwd) + gid=$(awk -F: "\$3 == \"${owner}\" { print \$4 }" /etc/passwd) ;; *) - gid=$(awk -F: "\$1 == \"${owner}\" { print $4 }" /etc/passwd) + gid=$(awk -F: "\$1 == \"${owner}\" { print \$4 }" /etc/passwd) ;; esac