diff options
Diffstat (limited to 'ansible')
-rw-r--r-- | ansible/infrastructure.yml | 2 | ||||
-rw-r--r-- | ansible/roles/nginx/tasks/main.yml | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/ansible/infrastructure.yml b/ansible/infrastructure.yml index 08667330..e4715a9c 100644 --- a/ansible/infrastructure.yml +++ b/ansible/infrastructure.yml @@ -14,7 +14,7 @@ name: "{{ app_name }}" file: "{{ app_name | lower }}" description: "{{ app_name }} offline repository" - baseurl: "{{ 'http://repo.infra-server' if 'infrastructure' not in group_names else 'file://' + app_data_path + '/pkg/rhel' }}" + baseurl: "{{ 'http://repo.infra-server/rhel' if 'infrastructure' not in group_names else 'file://' + app_data_path + '/pkg/rhel' }}" gpgcheck: no enabled: yes when: deploy_rpm_repository diff --git a/ansible/roles/nginx/tasks/main.yml b/ansible/roles/nginx/tasks/main.yml index 5c010848..c59be75f 100644 --- a/ansible/roles/nginx/tasks/main.yml +++ b/ansible/roles/nginx/tasks/main.yml @@ -31,7 +31,8 @@ - "{{ app_data_path }}/certs:/etc/nginx/certs:ro" - "{{ app_data_path }}/git-repo:/srv/git:rw" - "{{ app_data_path }}/http:/srv/http:rw" - - "{{ app_data_path }}/pkg/rhel:/srv/http/repo.infra-server:rw" + - "{{ app_data_path }}/pkg/rhel:/srv/http/repo.infra-server/rhel:rw" + - "{{ app_data_path }}/pkg/ubuntu/xenial:/srv/http/repo.infra-server/ubuntu/xenial:rw" - /var/log/nginx:/var/log/nginx:rw state: started restart_policy: unless-stopped |