Compare commits

...

7 Commits

Author SHA1 Message Date
54a6e007b6
Fix grafana port 2019-12-03 20:19:45 -06:00
aaa3d221e1
Disable autossh built-in monitoring 2019-12-03 20:18:54 -06:00
4f85a73714
Set gitea RuntimeDirectory 2019-12-03 20:18:11 -06:00
8b3ecdbb9c
Set autossh systemd RuntimeDirectory 2019-12-03 20:17:37 -06:00
25bde1105f
Add tmpfiles.d override for file permissions
The permissions for /var/log/syslog were being reset on boot
2019-12-03 20:14:59 -06:00
02919f87fc
Fix typos 2019-12-03 20:14:33 -06:00
3bb250084a
Fix formatting error 2019-12-03 20:14:07 -06:00
10 changed files with 33 additions and 26 deletions

View File

@ -19,16 +19,13 @@
- id_ed25519
- id_rsa
- name: create directories
- name: "create {{ autossh_etc_path }}"
file:
path: "{{ item }}"
path: "{{ autossh_etc_path }}"
owner: root
group: root
mode: 0755
state: directory
loop:
- "{{ autossh_etc_path }}"
- "{{ autossh_run_path }}"
- name: install package
package:

View File

@ -4,5 +4,6 @@ AUTOSSH_POLL=60
AUTOSSH_FIRST_POLL=30
AUTOSSH_GATETIME=0
AUTOSSH_PORT=22000
AUTOSSH_PIDFILE={{ autossh_run_path }}/{{ item.name }}.pid
SSH_OPTIONS="{{ item.options | join(' ') }}"
SSH_HOST={{ item.host }}

View File

@ -10,9 +10,10 @@ Type=simple
User={{ autossh_user }}
EnvironmentFile={{ autossh_etc_path }}/%i
ExecStart=
ExecStart=/usr/bin/autossh -C -q -l {{ autossh_user }} -N -o ExitOnForwardFailure=yes -o ServerAliveInterval=15 -o ServerAliveCountMax=3 -o StrictHostKeyChecking=no $SSH_OPTIONS $SSH_HOST
ExecStart=/usr/bin/autossh -M 0 -C -q -l {{ autossh_user }} -N -o ExitOnForwardFailure=yes -o ServerAliveInterval=15 -o ServerAliveCountMax=3 -o StrictHostKeyChecking=no $SSH_OPTIONS $SSH_HOST
Restart=always
RestartSec=60
RuntimeDirectory=autossh
PIDFile={{ autossh_run_path }}/%i.pid
[Install]

View File

@ -11,7 +11,6 @@ gitea_bin_path: /usr/local/bin
gitea_var_path: /var/lib/gitea
gitea_log_path: /var/log/gitea
gitea_etc_path: /etc/gitea
gitea_run_path: /run/gitea
gitea_path: "{{ gitea_bin_path }}/gitea"
gitea_config_path: "{{ gitea_etc_path }}/app.ini"
gitea_systemd_unit_path: /etc/systemd/system/gitea.service

View File

@ -58,14 +58,6 @@
state: directory
with_items: "{{ gitea_var_tree }}"
- name: "create {{ gitea_run_path }} path"
file:
path: "{{ gitea_run_path }}"
owner: "{{ gitea_user }}"
group: "{{ gitea_group }}"
mode: 0755
state: directory
- name: "create {{ gitea_log_path }} path"
file:
path: "{{ gitea_log_path }}"

View File

@ -55,7 +55,7 @@ Group={{ gitea_group }}
WorkingDirectory={{ gitea_var_path }}
# If using Unix socket: tells systemd to create the /run/gitea folder, which will contain the gitea.sock file
# (manually creating /run/gitea doesn't work, because it would not persist across reboots)
#RuntimeDirectory=gitea
RuntimeDirectory=gitea
ExecStart={{ gitea_path }} web --config {{ gitea_config_path }}
Restart=always
Environment=USER={{ gitea_user }} HOME={{ gitea_home_path }} GITEA_WORK_DIR={{ gitea_var_path }}

View File

@ -11,7 +11,7 @@ grafana_etc_path: /etc/grafana
grafana_config_path: "{{ grafana_etc_path }}/grafana.ini"
grafana_domain: "stats.{{ ansible_domain }}"
grafana_port: "stats.{{ ansible_domain }}"
grafana_port: 3002
grafana_user: grafana
grafana_group: grafana

View File

@ -4,6 +4,20 @@
rsyslog_default_rules_state: absent
when: rsyslog_archival_format_enabled
- name: configure systemd tmpfiles.d
template:
src: tmpfiles_d-rsyslog.conf
dest: /etc/tmpfiles.d/00rsyslog.conf
owner: root
group: root
mode: 0644
when: rsyslog_archival_format_enabled
- name: manage systemd tmpfiles.d override
file:
path: /etc/tmpfiles.d/00rsyslog.conf
state: "{{ rsyslog_archival_format_enabled | ternary('file', 'absent') }}"
- name: find default log files
find:
path: /var/log

View File

@ -28,16 +28,16 @@ $FileOwner {{ rsyslog_file_owner }}
$FileGroup {{ rsyslog_file_group }}
{% endif %}
{% if rsyslog_dir_owner is defined %}
$FileOwner {{ rsyslog_dir_owner }}
$DirOwner {{ rsyslog_dir_owner }}
{% endif %}
{% if rsyslog_dir_group is defined %}
$FileGroup {{ rsyslog_dir_group }}
$DirGroup {{ rsyslog_dir_group }}
{% endif %}
{% if rsyslog_file_create_mode is defined %}
$FileCreateMode {{ rsyslog_file_create_mode }}
{% endif %}
{% if rsyslog_create_dirs is defined %}
CreateDirs {{ rsyslog_create_dirs | ternary('on', 'off') }}
$CreateDirs {{ rsyslog_create_dirs | ternary('on', 'off') }}
{% endif %}
{% if rsyslog_dir_create_mode is defined %}
$DirCreateMode {{ rsyslog_dir_create_mode }}

View File

@ -0,0 +1,3 @@
# {{ ansible_managed }}
d /var/log/syslog {{ rsyslog_dir_create_mode }} {{ rsyslog_dir_owner }} {{ rsyslog_dir_group }} -