aboutsummaryrefslogtreecommitdiffstats
path: root/group_vars/all/default.yml
blob: 7b70a725842a09a3d1158aad8d6c014e5125959c (plain) (blame)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55

# =========================================================================== #
#     _   ______ ___________
#    | | / / __ `/ ___/ ___/
#    | |/ / /_/ / /  (__  ) 
#    |___/\__,_/_/  /____(_)
#
# =========================================================================== #

- hosts: all
  vars:

    # SYSTEMD VARIABLES
    g_systemd_unit_directory: /etc/systemd/system/

    # PORT VARIABLES
    g_port_ssh: 22
    g_port_http: 80
    g_port_https: 443

    g_port_gitweb_gui: 16010
    g_port_mkdocs_gui: 16020
    g_port_syncthing_gui: 16030
    g_port_grafana_gui: 16090
    g_port_wireguard: 51100
    g_port_grafana: 51200

    # IP VARIABLES
    g_ip_mkdocs_gui: 0.0.0.0

    # LOGGING VARIABLES
    g_logging_directory: /var/REPLACEME

    # PACKAGES
    package_curl: "curl"
    package_neovim: "neovim"
    package_tmux: "tmux"
    package_wget: "wget"
    package_zsh: "zsh"

- hosts: openbsd
  vars:
    group_root: "wheel"
    path_zsh_bin: "/usr/local/bin/zsh"

- hosts: centos
  vars:
    group_root: "root"
    path_zsh_bin: "/bin/zsh"

- hosts: debian
  vars:
    group_root: "root"
    path_zsh_bin: "/bin/zsh"

remember that computers suck.