Skip to content
Snippets Groups Projects
Commit a3ea3389 authored by nimrod's avatar nimrod
Browse files

Router: Enable soft updates.

parent ad2fbe8c
No related branches found
No related tags found
No related merge requests found
......@@ -61,11 +61,6 @@
name: httpd
state: restarted
- name: Message about restarting the machine
ansible.builtin.debug:
msg: The {{ ansible_facts.hostname }} needs to be restarted
verbosity: 0
- name: Stop the audio server
ansible.builtin.service:
name: sndiod
......@@ -90,3 +85,8 @@
ansible.builtin.service:
name: packetbeat
state: restarted
- name: Message about restarting the machine
ansible.builtin.debug:
msg: The {{ ansible_facts.hostname }} needs to be restarted
verbosity: 0
---
- name: Set soft updates on all mounts
with_items: |-
{{ ansible_mounts | selectattr("fstype", "equalto", "ffs") }}
ansible.posix.mount:
backup: true
boot: true
fstype: "{{ item.fstype }}"
opts: |-
{{ (item.options.split(",") + ["softdep"]) | unique | join(",") }}
path: "{{ item.mount }}"
src: "{{ item.device }}"
state: present
notify:
- Message about restarting the machine
tags:
- mounts
- name: Configure sysctl
with_dict:
net.inet.ip.forwarding: "1"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment