src.nth.io/

summaryrefslogtreecommitdiff
path: root/main.yaml
blob: 81108fdbafc30a1f3ef9e6def8cea754587cfc38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
---

- name: setup python2
  hosts: all
  gather_facts: no
  tasks:
    - name: install python2
      become: yes
      raw: "apt-get install python -y"

    - name: set hostname in OS
      become: yes
      hostname: name="{{inventory_hostname}}"

    - name: change timezone to UTC
      become: yes
      timezone: name="UTC"

    - name: authorize ssh keys
      authorized_key:
        user: "ubuntu"
        key: "https://github.com/LukeHoersten.keys"

- hosts: pleroma
  roles:
    - role: pleroma
      pleroma_user: "pleroma_haskell_social"
      pleroma_link_host: "haskell.social"
      pleroma_port: 4001

- hosts: pleroma
  roles:
    - role: pleroma
      pleroma_user: "pleroma_nth_io"
      pleroma_link_host: "nth.io"
      pleroma_port: 4000
      pleroma_signup_open: "false"