1d4893b8bb
The code to handle RHEL subscriptions was buggy and broke if no subscription was supplied. Change-Id: Ie4f30171f716312b69d760d45f25659606dadc1f
17 lines
482 B
Bash
Executable File
17 lines
482 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
if [ -n "$DIB_RHSM_USER" ] && [ -n "$DIB_RHSM_PASSWORD" ]
|
|
then
|
|
subscription-manager register --user $DIB_RHSM_USER --password $DIB_RHSM_PASSWORD
|
|
# wait a second to ensure consumer certificate is finished writing to disk
|
|
sleep 1
|
|
if [ -z $DIB_RHSM_POOL ]; then
|
|
subscription-manager attach --auto
|
|
else
|
|
subscription-manager attach --pool $DIB_RHSM_POOL
|
|
fi
|
|
subscription-manager repos --enable rhel-6-server-optional-rpms
|
|
fi
|