Fix the error messages in helper
[snf-image] / snf-image-helper / tasks / 50ChangePassword.in
1 #! /bin/bash
2
3 # Copyright (C) 2011 GRNET S.A. 
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 # General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18 # 02110-1301, USA.
19
20 ### BEGIN TASK INFO
21 # Provides:             ChangePassword
22 # RunBefore:            EnforcePersonality
23 # RunAfter:             InstallUnattend
24 # Short-Description:    Changes Password for specified users
25 ### END TASK INFO
26
27 set -e
28 . "@commondir@/common.sh"
29
30 trap task_cleanup EXIT
31 report_task_start
32
33 # Check if the task should be prevented from running.
34 check_if_excluded
35
36 windows_password() {
37     local target="$1"
38     local password="$2"
39
40     echo "@echo off" > "$target/Windows/SnfScripts/ChangeAdminPassword.cmd"
41
42     if [ -z "$SNF_IMAGE_PROPERTY_USERS" ]; then
43         warn "Image property \`USERS' is missing or empty. " \
44             "Changing the password for default user: \`Administrator'."
45
46         SNF_IMAGE_PROPERTY_USERS="Administrator"
47     fi
48
49     for usr in $SNF_IMAGE_PROPERTY_USERS; do
50         echo -n "Installing new password for user \`$usr'..."
51         echo "net user $usr $password" >> \
52             "$target/Windows/SnfScripts/ChangeAdminPassword.cmd"
53         echo done
54     done
55 }
56
57 linux_password() {
58     local target="$1"
59     local password="$2"
60
61     local hash=$("@scriptsdir@/snf-passtohash.py" "$password")
62     if [ ! -e "$target/etc/shadow" ]; then
63        log_error "No /etc/shadow found!" 
64     fi
65     
66     declare -a users
67     
68     if [ -n "$SNF_IMAGE_PROPERTY_USERS" ]; then
69         for usr in $SNF_IMAGE_PROPERTY_USERS; do
70             users+=("$usr")
71         done
72     else
73         warn "Image property \`USERS' is missing or empty. " \
74             "Changing the password for default user: \'root'."
75         users+=("root")
76     fi
77
78     for i in $(seq 0 1 $((${#users[@]}-1))); do
79         local tmp_shadow="$(mktemp)"
80         add_cleanup rm "$tmp_shadow"
81
82         echo -n "Setting ${users[$i]} password..."
83         if ! grep "^${users[$i]}:" "$target/etc/shadow" > /dev/null; then
84             log_error "User: \`${users[$i]}' does not exist."
85         fi
86     
87         echo "${users[$i]}:$hash:15103:0:99999:7:::" > "$tmp_shadow"
88         grep -v "${users[$i]}" "$target/etc/shadow" >> "$tmp_shadow"
89         cat "$tmp_shadow" > "$target/etc/shadow"
90         echo "done"
91     done
92 }
93
94 if [ ! -d "$SNF_IMAGE_TARGET" ]; then
95     log_error "Target dir: \`$SNF_IMAGE_TARGET' is missing"
96 fi
97
98 if [ -z "$SNF_IMAGE_PASSWORD" ]; then
99     log_error "Password is missing"
100 fi
101
102 #trim users var
103 SNF_IMAGE_PROPERTY_USERS=$(echo $SNF_IMAGE_PROPERTY_USERS)
104
105 if [ "$SNF_IMAGE_PROPERTY_OSFAMILY" = "windows" ]; then
106     windows_password "$SNF_IMAGE_TARGET" "$SNF_IMAGE_PASSWORD"
107 elif [ "$SNF_IMAGE_PROPERTY_OSFAMILY" = "linux" ]; then
108     linux_password "$SNF_IMAGE_TARGET" "$SNF_IMAGE_PASSWORD"
109 fi
110
111 exit 0
112
113 # vim: set sta sts=4 shiftwidth=4 sw=4 et ai :
114