mirror of https://github.com/apache/cloudstack.git
Create user 'cloud' in cloudstack-usage postinstall (#7559)
This ensures the chown 'cloud:cloud' command (later in the same file) is always performed with no error.
This commit is contained in:
parent
4138ca7c5d
commit
c3535880d2
|
|
@ -21,7 +21,12 @@ set -e
|
||||||
|
|
||||||
case "$1" in
|
case "$1" in
|
||||||
configure)
|
configure)
|
||||||
|
if ! getent passwd cloud >/dev/null; then
|
||||||
|
adduser --quiet --system --group --no-create-home --home /var/lib/cloudstack/management cloud
|
||||||
|
else
|
||||||
|
usermod -m -d /var/lib/cloudstack/management cloud || true
|
||||||
|
fi
|
||||||
|
|
||||||
# Linking usage server db.properties to management server db.properties
|
# Linking usage server db.properties to management server db.properties
|
||||||
if [ -f "/etc/cloudstack/management/db.properties" ]; then
|
if [ -f "/etc/cloudstack/management/db.properties" ]; then
|
||||||
echo "Replacing usage server's db.properties with a link to the management server's db.properties"
|
echo "Replacing usage server's db.properties with a link to the management server's db.properties"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue