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

Become root #15

Merged
merged 1 commit into from
Mar 20, 2024
Merged
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
1 change: 1 addition & 0 deletions tasks/redhat.yaml
Original file line number Diff line number Diff line change
@@ -1,26 +1,27 @@
---
- name: Import a key for nginx
become: true
ansible.builtin.rpm_key:
state: present
key: https://nginx.org/keys/nginx_signing.key

Check failure on line 6 in tasks/redhat.yaml

View workflow job for this annotation

GitHub Actions / Test (rockylinux9)

6:10 [colons] too many spaces after colon

- name: system packages | setup upstream nginx stable repo

Check warning on line 8 in tasks/redhat.yaml

View workflow job for this annotation

GitHub Actions / Test (rockylinux9)

name[casing]

All names should start with an uppercase letter.
become: true
ansible.builtin.dnf:
update_cache: true
name: "https://nginx.org/packages/centos/9/x86_64/RPMS/nginx-1.24.0-1.el9.ngx.x86_64.rpm"

Check failure on line 12 in tasks/redhat.yaml

View workflow job for this annotation

GitHub Actions / Test (rockylinux9)

12:81 [line-length] line too long (93 > 80 characters)
state: present
when: not nginx_version

- name: system packages | setup upstream nginx stable repo

Check warning on line 16 in tasks/redhat.yaml

View workflow job for this annotation

GitHub Actions / Test (rockylinux9)

name[casing]

All names should start with an uppercase letter.
become: true
ansible.builtin.dnf:
update_cache: true
name: "https://nginx.org/packages/centos/9/x86_64/RPMS/nginx-{{ nginx_version }}-1.el9.ngx.x86_64.rpm"

Check failure on line 20 in tasks/redhat.yaml

View workflow job for this annotation

GitHub Actions / Test (rockylinux9)

20:81 [line-length] line too long (106 > 80 characters)
state: present
when: nginx_version

- name: system packages | install nginx

Check warning on line 24 in tasks/redhat.yaml

View workflow job for this annotation

GitHub Actions / Test (rockylinux9)

name[casing]

All names should start with an uppercase letter.
become: true
ansible.builtin.dnf:
update_cache: true
Expand Down
Loading