Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor doc update and FQCN for EL tasks #5

Merged
merged 2 commits into from
Oct 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,11 @@ Variable | Description
-------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
bravebrowser_app | Name of Brave browser application package require to be installed i.e. `brave-browser`
bravebrowser_app_desired_state | State of the Brave browser package. Whether to install, verify if available or to uninstall (i.e. ansible apt module values: `present`, `latest`, or `absent`)
bravebrowser_repo_debian_url | Brave browser repo URL for Debain family systems.
bravebrowser_repo_debian_gpg_key | Brave browser key required on Debian family systems.
bravebrowser_repo_debian | Brave browser repo URL for Debain family systems.
bravebrowser_repo_debian_gpg_key_url | Brave browser gpg key URL required on Debian family system
bravebrowser_repo_debian_gpg_key_dest | Brave browser gpg key path to store locally on Debian family system
bravebrowser_repo_debian | Brave browser repo string for Debain family systems.
bravebrowser_repo_debian_filename | Name of the repository file that will be stored at `/etc/apt/sources.list.d/` on Debian based systems.
bravebrowser_repo_debian_desired_state | `present` indicates creating the repository file if it doesn't exist on Debian based systems. Alternative is `absent` (not recommended as it will prevent from installation of **brave-browser** package).
bravebrowser_repo_el | Repository `baseurl` for Brave browser on EL based systems.
Expand Down
4 changes: 2 additions & 2 deletions tasks/install_el.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@


- name: EL Family | Adding repository for {{ bravebrowser_repo_el }}
yum_repository:
ansible.builtin.yum_repository:
name: "{{ bravebrowser_repo_el_name }}"
description: "{{ bravebrowser_repo_el_description }}"
baseurl: "{{ bravebrowser_repo_el }}"
Expand All @@ -14,7 +14,7 @@
enabled: "{{ bravebrowser_repo_el_enabled }}"

- name: EL Family | Installing {{ bravebrowser_app }}
yum:
ansible.builtin.yum:
name: "{{ bravebrowser_app }}"
state: "{{ bravebrowser_app_desired_state }}"
update_cache: yes