[__ssh_authorized_keys] Fix incorrectly escaped variable

remotes/origin/feature/shell-lib
Dennis Camera 6 years ago
parent 7981f81dcd
commit f57ce648a3
  1. 4
      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

Loading…
Cancel
Save