Browse Source

cleanup vars

Thomas Buck 5 years ago
parent
commit
f88fc91d13
2 changed files with 12 additions and 16 deletions
  1. 12
    9
      group_vars/sovereign
  2. 0
    7
      roles/common/defaults/main.yml

+ 12
- 9
group_vars/sovereign View File

@@ -3,12 +3,10 @@
3 3
 # Set your variables here.
4 4
 ################################################################################
5 5
 
6
-# common
7 6
 domain: (required)
7
+server_fqdn: (required)
8 8
 main_user_name: (required)
9
-
10
-# admin email
11
-# fail2ban reports will be sent to this address
9
+main_user_shell: "/usr/bin/zsh"
12 10
 admin_email: "{{ main_user_name }}@{{ domain }}"
13 11
 
14 12
 virtual_domains:
@@ -16,12 +14,12 @@ virtual_domains:
16 14
     pk_id: 1
17 15
     doc_root: "/var/www/{{ domain }}"
18 16
 
19
-# mail
20 17
 mail_virtual_users:
21 18
   - account: "{{ main_user_name }}"
22 19
     domain: "{{ domain }}"
23 20
     password: "{{ 'changeme' | doveadm_pw_hash }}"
24 21
     domain_pk_id: 1
22
+
25 23
 mail_virtual_aliases:
26 24
   - source: "root@{{ domain }}"
27 25
     destination: "{{ admin_email }}"
@@ -36,12 +34,10 @@ mail_virtual_aliases:
36 34
     destination: "{{ admin_email }}"
37 35
     domain_pk_id: 1
38 36
 
39
-# timezone
40
-# common_timezone will be used in the common and mailserver roles
41 37
 common_timezone: 'Etc/UTC'
42 38
 
43
-# znc
44 39
 irc_nick: (required)
40
+irc_altnick: (required)
45 41
 irc_ident: (required)
46 42
 irc_realname: (required)
47 43
 irc_quitmsg: (required)
@@ -50,8 +46,15 @@ monit_alert_emails:
50 46
   - "{{ admin_email }}"
51 47
 #  - "PUSHOVER_KEY@pomail.net"
52 48
 
53
-# openvpn
54 49
 openvpn_clients:
55 50
   - laptop
56 51
   - phone
57 52
   - tablet
53
+
54
+# use servers tailored to the server location
55
+# See http://www.pool.ntp.org/en/use.html
56
+#ntp_servers:
57
+#  - 0.de.pool.ntp.org
58
+#  - 1.de.pool.ntp.org
59
+#  - 2.de.pool.ntp.org
60
+#  - 3.de.pool.ntp.org

+ 0
- 7
roles/common/defaults/main.yml View File

@@ -23,14 +23,7 @@ macs: "hmac-sha2-512-etm@openssh.com,hmac-sha2-256-etm@openssh.com,umac-128-etm@
23 23
 
24 24
 # ntp
25 25
 ntp_servers:
26
-  # use nearby ntp servers by default
27 26
   - 0.pool.ntp.org
28 27
   - 1.pool.ntp.org
29 28
   - 2.pool.ntp.org
30 29
   - 3.pool.ntp.org
31
-  # use servers tailored to the server location
32
-  # See http://www.pool.ntp.org/en/use.html
33
-  # - 0.north-america.pool.ntp.org
34
-  # - 1.north-america.pool.ntp.org
35
-  # - 2.north-america.pool.ntp.org
36
-  # - 3.north-america.pool.ntp.org

Loading…
Cancel
Save