summaryrefslogtreecommitdiffstats
path: root/adduser/adduser.sh
diff options
context:
space:
mode:
Diffstat (limited to 'adduser/adduser.sh')
-rw-r--r--adduser/adduser.sh25
1 files changed, 13 insertions, 12 deletions
diff --git a/adduser/adduser.sh b/adduser/adduser.sh
index 7097caf..5b970dc 100644
--- a/adduser/adduser.sh
+++ b/adduser/adduser.sh
@@ -598,19 +598,20 @@ input_from_file() {
case "$fileline" in
\#*|'')
;;
- esac
-
- get_user || continue
- get_gecos
- get_uid
- get_logingroup
- get_class
- get_shell
- get_homedir
- get_password
- get_expire_dates
+ *)
+ get_user || continue
+ get_gecos
+ get_uid
+ get_logingroup
+ get_class
+ get_shell
+ get_homedir
+ get_password
+ get_expire_dates
- add_user
+ add_user
+ ;;
+ esac
done
}