| |
| # Copyright 2017-present Open Networking Foundation |
| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); |
| # you may not use this file except in compliance with the License. |
| # You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| |
| |
| --- |
| # create-configdirs-privileged/tasks/main.yml |
| |
| # This role exists to work around issues with the local scenario, which may not |
| # necessarily be run by a user with become (sudo) rights, which causes these |
| # director creation tasks to fail when `become: yes` is used. |
| |
| # become version of directory creation from `cord-profile` role |
| - name: Create cord_profile directory, privileged |
| become: yes |
| file: |
| path: "{{ config_cord_profile_dir }}" |
| state: directory |
| mode: 0755 |
| owner: "{{ ansible_user_id }}" |
| group: "{{ ansible_user_gid }}" |
| |
| # become version of directory creation from `pki-root-ca` role |
| - name: Create PKI and credentials directories, privileged |
| become: yes |
| file: |
| dest: "{{ item }}" |
| state: directory |
| owner: "{{ ansible_user_id }}" |
| mode: 0700 |
| with_items: |
| - "{{ credentials_dir }}" |
| - "{{ pki_dir }}" |
| |
| - name: Create root CA directory, privileged |
| become: yes |
| file: |
| dest: "{{ pki_dir }}/root_ca" |
| state: directory |
| owner: "{{ ansible_user_id }}" |
| mode: 0755 |
| |
| # become version of directory creation from `pki-intermediate-ca` role |
| - name: Create intermediate CA directory, privileged |
| become: yes |
| file: |
| dest: "{{ pki_dir }}/{{ site_name }}_im_ca" |
| state: directory |
| owner: "{{ ansible_user_id }}" |
| mode: 0755 |
| |
| # become version of directory creation from `ssh-pki` role |
| - name: Create SSH CA Directory |
| become: yes |
| file: |
| dest: "{{ item }}" |
| state: directory |
| owner: "{{ ansible_user_id }}" |
| mode: 0700 |
| with_items: |
| - "{{ ssh_pki_dir }}" |
| - "{{ ssh_pki_dir }}/ca" |
| - "{{ ssh_pki_dir }}/client_certs" |
| - "{{ ssh_pki_dir }}/host_certs" |
| |
| |