diff --git a/infra_config.yml.sample b/infra_config.yml.sample index e477c08..6d4f1f1 100644 --- a/infra_config.yml.sample +++ b/infra_config.yml.sample @@ -1,6 +1,5 @@ --- system_config_repo_url: git@your_git_server/system-config.git -system_config_repo_https_url: https://your_git_server/system-config.git key_name: your_openstack_key infra_servers: - name: puppetmaster.yourdomain.cloud diff --git a/roles/bootstrap_puppetmaster/tasks/clone_system_config.yml b/roles/bootstrap_puppetmaster/tasks/clone_system_config.yml deleted file mode 100644 index 3f9cfd9..0000000 --- a/roles/bootstrap_puppetmaster/tasks/clone_system_config.yml +++ /dev/null @@ -1,8 +0,0 @@ ---- -# Clone system-config -- git: repo="{{ system_config_repo_https_url }}" - dest=/opt/system-config/production - accept_hostkey=True - version="{{ system_config_branch }}" - force=True - tags: clone_system_config diff --git a/roles/bootstrap_puppetmaster/tasks/main.yml b/roles/bootstrap_puppetmaster/tasks/main.yml index 01f4192..c0f04e8 100644 --- a/roles/bootstrap_puppetmaster/tasks/main.yml +++ b/roles/bootstrap_puppetmaster/tasks/main.yml @@ -1,4 +1,4 @@ --- -- include: clone_system_config.yml +- include: rsync_system_config.yml - include: install_puppet_and_modules.yml - include: configure_puppetmaster.yml diff --git a/roles/bootstrap_puppetmaster/tasks/rsync_system_config.yml b/roles/bootstrap_puppetmaster/tasks/rsync_system_config.yml new file mode 100644 index 0000000..86df692 --- /dev/null +++ b/roles/bootstrap_puppetmaster/tasks/rsync_system_config.yml @@ -0,0 +1,4 @@ +--- +# Synchronize system-config from local to dest machine +- synchronize: src=/tmp/infra-ansible/system-config dest=/opt/system-config/production + tags: rsync_system_config