ea3f4dd459
ensure 4 spaces indentation is used everywhere. Change-Id: Ieb48faacb4c96b7b358771d70c17f2f22d0354f4
13 lines
248 B
Bash
Executable File
13 lines
248 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
if [ -n "$DIB_RHSM_USER" ] && [ -n "$DIB_RHSM_PASSWORD" ]; then
|
|
if [[ "$DIB_REG_TYPE" == "rhn" ]]; then
|
|
rm -rf /etc/sysconfig/rhn/systemid
|
|
else
|
|
subscription-manager unregister
|
|
fi
|
|
fi
|