__user: remove =~, cleanup and beautify, replace cut with awk

Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
remotes/origin/1.6
Nico Schottelius 14 years ago
parent 674e1f58f8
commit 4b76d8a7e0
  1. 88
      conf/type/__user/gencode-remote

@ -23,60 +23,50 @@
name="$__object_id" name="$__object_id"
command= cd "$__object/parameter"
if grep -q "^$name" "$__object/explorer/passwd"; then if grep -q "^${name}:" "$__object/explorer/passwd"; then
# user exists for property in $(ls .); do
command="usermod" new_value="$(cat "$property")"
else
# user does not exist
command="useradd"
fi
file="$__object/explorer/passwd"
get_current_value() { case "$key" in
local key="$1" password)
local new_value="$2" field=3
file="$__object/explorer/shadow"
;;
gid)
if $(echo "$new_value" | grep -q '^[0-9][0-9]*$'); then
field=4
else
# group name
file="$__object/explorer/group"
field=1
fi
;;
uid) field=3 ;;
comment) field=5 ;;
home) field=6 ;;
shell) field=7 ;;
esac
local explorer="$__object/explorer/passwd" current_value="$(awk -F: '{ print $ENVIRON["field"] }' < "$file")"
local index
case "$key" in
password)
explorer="$__object/explorer/shadow"
index=2
;;
uid) index=3;;
gid)
if [[ $new_value =~ ^[0-9]+$ ]]; then
# numeric gid
index=4
else
# group name
explorer="$__object/explorer/group"
index=1
fi
;;
comment) index=5;;
home) index=6;;
shell) index=7;;
esac
cut -d':' -f $index "$explorer"
}
if [ "$new_value" != "$current_value" ]; then
# Shedule changed properties for update
set -- "$@" "--$property" \"$new_value\"
fi
done
set -- "$@" if [ $# -gt 0 ]; then
cd "$__object/parameter" # Update changed properties
for property in $(ls .); do echo usermod "$@" "$name"
new_value="$(cat "$property")"
current_value=$(get_current_value "$property" "$new_value")
if [ "$new_value" != "$current_value" ]; then
# Shedule changed properties for update
set -- "$@" "--$property" \"$new_value\"
fi fi
done else
for property in $(ls .); do
new_value="$(cat "$property")"
set -- "$@" "--$property" \"$new_value\"
done
if [ $# -gt 0 ]; then echo useradd "$@" "$name"
# Update changed properties
echo $command $@ $name
fi fi

Loading…
Cancel
Save