generated from roles-ansible/ansible_role_template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from roles-ansible/lint
improve linting and cleanup
- Loading branch information
Showing
14 changed files
with
54 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ on: | |
|
||
jobs: | ||
build: | ||
name: Jinja2 Linting | ||
name: Galaxy Role Importer | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
collections: | ||
- name: 'community.general' | ||
version: ">=7.5.0,<=8.0.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,43 @@ | ||
--- | ||
- name: Run optional versionscheck | ||
ansible.builtin.include_tasks: versioncheck.yml | ||
ansible.builtin.include_tasks: | ||
file: 'versioncheck.yml' | ||
when: submodules_versioncheck | bool | ||
|
||
- name: Create Etebase User/Group | ||
ansible.builtin.include_tasks: create_user.yml | ||
ansible.builtin.include_tasks: | ||
file: 'create_user.yml' | ||
|
||
- name: Define Etebase Version | ||
ansible.builtin.include_tasks: set_version.yml | ||
ansible.builtin.include_tasks: | ||
file: 'set_version.yml' | ||
|
||
- name: Run optional etebase backup | ||
ansible.builtin.include_tasks: backup.yml | ||
ansible.builtin.include_tasks: | ||
file: 'backup.yml' | ||
when: etebase__create_backup | bool | ||
|
||
- name: Download Etebase Repo | ||
ansible.builtin.include_tasks: download.yml | ||
ansible.builtin.include_tasks: | ||
file: 'download.yml' | ||
|
||
- name: Setup Virtualenv and install Requirements | ||
ansible.builtin.include_tasks: python_venv.yml | ||
ansible.builtin.include_tasks: | ||
file: 'python_venv.yml' | ||
|
||
- name: Create Etebase Config | ||
ansible.builtin.include_tasks: configure.yml | ||
ansible.builtin.include_tasks: | ||
file: 'configure.yml' | ||
|
||
- name: Run ./manage.py migrate | ||
ansible.builtin.include_tasks: migrate.yml | ||
ansible.builtin.include_tasks: | ||
file: 'migrate.yml' | ||
|
||
- name: Setup Systemd Service | ||
ansible.builtin.include_tasks: systemd.yml | ||
ansible.builtin.include_tasks: | ||
file: 'systemd.yml' | ||
when: etebase__systemd_setup | bool | ||
|
||
- name: Cleanup file permissions | ||
ansible.builtin.include_tasks: filepermissions.yml | ||
ansible.builtin.include_tasks: | ||
file: 'filepermissions.yml' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters