25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
12345678910111213141516171819202122232425262728293031323334353637383940 |
- ---
-
- - hosts: accounting_vdesks
- gather_facts: false
- roles:
- - name: staging
- default_stage: provisioning
-
- - hosts: accounting_vdesks:&provisioning
- remote_user: root
- gather_facts: false
- roles:
- - role: netif
- - role: virt_default_profile
- - role: virt_provision
- - role: common
- - name: staging
- next_stage: staging
-
- - hosts: accounting_vdesks
- remote_user: root
- roles:
- - role: common
- - role: eralitex_desktop
- - role: desktop_apps
- - role: atom_editor
- - role: accounting
-
- - hosts: accounting_vdesks:&staging
- remote_user: root
- roles:
- - name: staging
- next_stage: production
-
- - hosts: accounting_vdesks:&recycling
- remote_user: root
- gather_facts: false
- roles:
- - role: virt
- virt_state: absent
|