Skip to content

Commit

Permalink
follow linter suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
suhancz committed Oct 28, 2023
1 parent c9a3710 commit 9f98c52
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ sudo: false
addons:
apt:
packages:
- python-pip
- python-pip

install:
# Install ansible
Expand Down
2 changes: 1 addition & 1 deletion handlers/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@
force: true
owner: root
group: root
mode: 0644
mode: u=rw,og=r
- name: Restart systemd-resolved
ansible.builtin.systemd_service:
name: systemd-resolved
Expand Down
2 changes: 1 addition & 1 deletion tasks/firewall.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
block:
- name: "Open firewall for numeric port {{ port }}"
ansible.posix.firewalld:
port : "{{ port }}"
port: "{{ port }}"
permanent: yes
state: enabled
immediate: yes
Expand Down
2 changes: 1 addition & 1 deletion tasks/local_dns_cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
dest: /etc/resolv.conf
owner: root
group: root
mode: 0644
mode: u=rw,og=r
backup: yes
notify:
- Default to localhost in resolv.conf
Expand Down

0 comments on commit 9f98c52

Please sign in to comment.