Skip to content

Commit

Permalink
useradd: Fix -k, -K, and --home-dir argument completions.
Browse files Browse the repository at this point in the history
  • Loading branch information
scop committed Oct 25, 2012
1 parent e0c70ab commit 09d24da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions completions/useradd
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ _useradd()
# with -u/--uid

case $prev in
-c|--comment|-h|--help|-e|--expiredate|-f|--inactive|-k|--key|\
-c|--comment|-h|--help|-e|--expiredate|-f|--inactive|-K|--key|\
-p|--password|-u|--uid|-Z|--selinux-user)
return 0
;;
-b|--base-dir|-d|--home|-k|--skel)
-b|--base-dir|-d|--home-dir|-k|--skel)
_filedir -d
return 0
;;
Expand Down

0 comments on commit 09d24da

Please sign in to comment.