Commit 659fba98 authored by Дмитрий Сафронов's avatar Дмитрий Сафронов
Browse files

Resolve "initial"

parent 1855f3e2
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+1 −0
Original line number Diff line number Diff line
/.idea/

.gitlab-ci.yml

0 → 100644
+0 −0

Empty file added.

deploy.yml

0 → 100644
+24 −0
Original line number Diff line number Diff line
---

- name: Set hostnames for IPA server & replicas
  hosts: ipaserver:ipareplicas
  become: true
  roles:
    - role: hostname
      state: present
    - role: rsyslog_sender
      state: present

- name: Install IPA servers
  hosts: ipaserver
  become: true
  roles:
    - role: ipaserver
      state: present

- name: Install IPA replicas
  hosts: ipareplicas
  become: true
  roles:
    - role: ipareplica
      state: present

requirements.yml

0 → 100644
+13 −0
Original line number Diff line number Diff line
---

roles:
  - name: https://gitlab.cyberbrain.pw/ansible/roles/essential.git
    type: git
  - name: https://gitlab.cyberbrain.pw/ansible/roles/hostname.git
    type: git
  - name: https://gitlab.cyberbrain.pw/ansible/roles/rsyslog_sender.git
    type: git

collections:
  - name: https://gitlab.cyberbrain.pw/ansible/collections/freeipa.git
    type: git