Browse Source

Merge pull request #8583 from tomassedovic/bz/1584608

Initialise repos before installing packages
Scott Dodson 6 years ago
parent
commit
aed94ce3d4
2 changed files with 4 additions and 2 deletions
  1. 4 0
      playbooks/init/main.yml
  2. 0 2
      playbooks/prerequisites.yml

+ 4 - 0
playbooks/init/main.yml

@@ -22,6 +22,10 @@
 
 - import_playbook: basic_facts.yml
 
+# NOTE: we must call init repos before installing base packages
+# because they may come from the repos.
+- import_playbook: repos.yml
+
 # base_packages needs to be setup for openshift_facts.py to run correctly.
 - import_playbook: base_packages.yml
   when: l_install_base_packages | default(False) | bool

+ 0 - 2
playbooks/prerequisites.yml

@@ -8,8 +8,6 @@
 - import_playbook: init/validate_hostnames.yml
   when: not (skip_validate_hostnames | default(False))
 
-- import_playbook: init/repos.yml
-
 # This is required for container runtime for crio, only needs to run once.
 - name: Configure os_firewall
   hosts: "{{ l_scale_up_hosts | default(l_default_firewall_hosts) }}"