jina templates

This commit is contained in:
Caleb Fultz 2024-07-14 00:57:15 -04:00
parent d3e7a08305
commit 393258b750
7 changed files with 10 additions and 6 deletions

View File

@ -29,4 +29,4 @@
authorized_key: authorized_key:
user: cfultz user: cfultz
state: present state: present
key: "{{ lookup('url', 'https://git.cfultz.wtf/cfultz.keys', split_lines=False) }}" key: "{{ lookup('url', 'https://git.cfultz.wtf/cfultz.keys', split_lines=False) }}"

View File

@ -3,7 +3,7 @@
become: true become: true
pre_tasks: pre_tasks:
- name: install updates for RHEL distros - name: install updates for EL distros
tags: always tags: always
package: package:
update_only: yes update_only: yes

View File

@ -5,3 +5,4 @@ database_package: mariadb
database_service: mariadb database_service: mariadb
passwd_auth: "no" passwd_auth: "no"
ssh_template_file: sshd_config_el.j2 ssh_template_file: sshd_config_el.j2
sshd_service: sshd

View File

@ -4,4 +4,5 @@ php_package: php
database_package: mariadb database_package: mariadb
database_service: mariadb database_service: mariadb
passwd_auth: "no" passwd_auth: "no"
ssh_template_file: sshd_config_el.j2 ssh_template_file: sshd_config_el.j2
sshd_service: sshd

View File

@ -4,4 +4,5 @@ php_package: libapache2-mod-php
database_package: mariadb-server database_package: mariadb-server
database_service: mariadb-server database_service: mariadb-server
passwd_auth: "no" passwd_auth: "no"
ssh_template_file: sshd_config_debian.j2 ssh_template_file: sshd_config_debian.j2
sshd_service: ssh

View File

@ -4,4 +4,5 @@ php_package: libapache2-mod-php
database_package: mariadb-server database_package: mariadb-server
database_service: mariadb-server database_service: mariadb-server
passwd_auth: "no" passwd_auth: "no"
ssh_template_file: sshd_config_debian.j2 ssh_template_file: sshd_config_debian.j2
sshd_service: ssh

View File

@ -1,4 +1,4 @@
- name: restart_sshd - name: restart_sshd
service: service:
name: sshd name: "{{ sshd_service }}"
state: restarted state: restarted