diff --git a/README.md b/README.md index 5001f88..9ac49fd 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,11 @@ Ansible AWX is the method used for the Rocky Linux infrastructure, as a replacement for using the CLI. This template is used specifically for management of Gitea. +## TODO + +* Create valid tests +* Create valid template file to deploy + ## Provides / Information This repository is for Gitea operations and management. diff --git a/vars/db.yml b/vars/db.yml index b8b4f90..c21e271 100644 --- a/vars/db.yml +++ b/vars/db.yml @@ -1,5 +1,5 @@ --- -gitea_db_type: "{{ gitea_db_type|default("sqlite3") }}" +gitea_db: "{{ gitea_db_type|default("sqlite3") }}" gitea_db_user: "{{ gitea_db_username|default("gitea") }}" gitea_db_pass: "{{ gitea_db_password|default("") }}" gitea_db_host: "{{ gitea_db_host|default("127.0.0.1:3306") }}"