Skip to content

Commit c1195d1

Browse files
committed
Clarify "user admin exists" message
1 parent c426be5 commit c1195d1

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

install/vst-install-debian.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,11 +126,11 @@ if [ ! -z "$(grep ^admin: /etc/passwd)" ] && [ "$force" != 'yes' ]; then
126126
exit 1
127127
fi
128128

129-
# Check admin user account
129+
# Check admin group
130130
if [ ! -z "$(grep ^admin: /etc/group)" ] && [ "$force" != 'yes' ]; then
131-
echo "Error: user admin exists"
131+
echo "Error: group admin exists"
132132
echo
133-
echo 'Please remove admin user account before proceeding.'
133+
echo 'Please remove admin group before proceeding.'
134134
echo 'If you want to do it automatically run installer with -f option:'
135135
echo "Example: bash $0 --force"
136136
exit 1

install/vst-install-rhel.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,11 +124,11 @@ if [ ! -z "$(grep ^admin: /etc/passwd)" ] && [ "$force" != 'yes' ]; then
124124
exit 1
125125
fi
126126

127-
# Check admin user account
127+
# Check admin group
128128
if [ ! -z "$(grep ^admin: /etc/group)" ] && [ "$force" != 'yes' ]; then
129-
echo "Error: user admin exists"
129+
echo "Error: group admin exists"
130130
echo
131-
echo 'Please remove admin user account before proceeding.'
131+
echo 'Please remove admin group before proceeding.'
132132
echo 'If you want to do it automatically run installer with -f option:'
133133
echo "Example: bash $0 --force"
134134
exit 1

install/vst-install-ubuntu.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,11 +123,11 @@ if [ ! -z "$(grep ^admin: /etc/passwd)" ] && [ "$force" != 'yes' ]; then
123123
exit 1
124124
fi
125125

126-
# Check admin user account
126+
# Check admin group
127127
if [ ! -z "$(grep ^admin: /etc/group)" ] && [ "$force" != 'yes' ]; then
128-
echo "Error: user admin exists"
128+
echo "Error: group admin exists"
129129
echo
130-
echo 'Please remove admin user account before proceeding.'
130+
echo 'Please remove admin group before proceeding.'
131131
echo 'If you want to do it automatically run installer with -f option:'
132132
echo "Example: bash $0 --force"
133133
exit 1

install/vst-install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ if [ ! -z "$(grep ^admin: /etc/passwd)" ] && [ -z "$1" ]; then
2727
exit 1
2828
fi
2929

30-
# Check admin user account
30+
# Check admin group
3131
if [ ! -z "$(grep ^admin: /etc/group)" ] && [ -z "$1" ]; then
3232
echo "Error: group admin exists"
3333
echo
34-
echo 'Please remove admin user account before proceeding.'
34+
echo 'Please remove admin group before proceeding.'
3535
echo 'If you want to do it automatically run installer with -f option:'
3636
echo "Example: bash $0 --force"
3737
exit 1

0 commit comments

Comments
 (0)