]> Frank Brehm's Git Trees - pixelpark/create-vmware-tpl.git/commitdiff
Changing internal repo server URL for RHEL 9
authorFrank Brehm <frank.brehm@pixelpark.com>
Thu, 7 Dec 2023 08:53:39 +0000 (09:53 +0100)
committerFrank Brehm <frank.brehm@pixelpark.com>
Thu, 7 Dec 2023 08:53:39 +0000 (09:53 +0100)
.gitlab-ci.yml
etc/create-vmware-template.ini.default
lib/cr_vmware_tpl/config/__init__.py

index 8346b38eb351892e473ec74e64bff909d0956839..aa2e4b9c8aa07288608d636d5b308894b3c88fbf 100644 (file)
@@ -55,6 +55,7 @@ variables:
   VM_KS_TEMPLATE: 'el9-standard.ks'
   RHSM_USER: 'dpx-subscriber'
   RHSM_PWD: ''
+  RHEL9_REPO_SERVER_URL: 'https://prd-repo03.pixelpark.com/Linux/yum/rhel'
   MAX_WAIT_GENERAL: 60
   MAX_WAIT_SHUTDOWN: 120
   MAX_WAIT_FOR_FINISH_INSTALL: 1800
@@ -245,6 +246,7 @@ Linter:
       if [[ -n "${RHSM_PWD}" ]] ; then
           echo "rhsm_pwd = ${RHSM_PWD}"                                   >> "${CONFIG_FILE}"
       fi
+      echo "rhel9_repo_server_url = ${RHEL9_REPO_SERVER_URL}"             >> "${CONFIG_FILE}"
       echo ""                                                             >> "${CONFIG_FILE}"
       echo "[Cobbler]"                                                    >> "${CONFIG_FILE}"
       echo "host = ${COBBLER_HOST}"                                       >> "${CONFIG_FILE}"
index 6702d525c3e9c17a2a8603816f9b07fca0cce87f..2959708856e35a503e7ca054bf2a4ef013da1a4a 100644 (file)
@@ -47,7 +47,7 @@ rhsm_user = dpx-subscriber
 ;rhsm_pwd =
 
 ; The complete URL of the RHEL9 repo server
-;rhel9_repo_server_url = https://test-repo01.pixelpark.com/Linux/yum/rhel
+;rhel9_repo_server_url = https://prd-repo03.pixelpark.com/Linux/yum/rhel
 
 [Timeouts]
 
index 539fa69801d0d8c482c1217046de9249a0d65ef9..cd79f3e2e6cd191218bf4794ef7a6fbaa0ae5b9f 100644 (file)
@@ -38,7 +38,7 @@ from .eval import ConfigEval
 from .ldap import LdapConnectionInfo, LdapConnectionDict
 from .timeouts import ConfigTimeouts
 
-__version__ = '3.3.0'
+__version__ = '3.3.1'
 LOG = logging.getLogger(__name__)
 
 _ = XLATOR.gettext
@@ -140,7 +140,7 @@ class CrTplConfiguration(BaseMultiConfig, ConfigCobbler, ConfigTimeouts, ConfigE
     re_resolv_ns_entry = re.compile(r'^\s*nameserver\s+(\S+)')
 
     default_rhsm_user = 'dpx-subscriber'
-    default_rhel9_repo_server_url = 'https://test-repo01.pixelpark.com/Linux/yum/rhel'
+    default_rhel9_repo_server_url = 'https://prd-repo03.pixelpark.com/Linux/yum/rhel'
 
     # -------------------------------------------------------------------------
     def __init__(