44c3ff7ece
If you want to have the installation update packages, you'll need to register the system log in to rhn and subscribe to an available subscription. export DIB_RHSM_USER to your rhn username export DIB_RHSM_PASSWORD to your rhn password To get the qcow2 image, log into rhn.redhat.com and download the image from https://rhn.redhat.com/rhn/software/channel/downloads/Download.do?cid=16952 Then export DIB_CLOUD_IMAGES to whereever you're hosting the qcow2. Change-Id: Idb547f4ffe75514b1e3f6b34f5f347493b132925
17 lines
478 B
Bash
Executable File
17 lines
478 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
|