From 870baa3fcf6da35b49b65cad50c88793dfa919d2 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Wed, 3 Aug 2022 20:54:45 -0500 Subject: [PATCH] remount: Remount read/write by default Setting the `remount_state` variable to `rw` by default will allow the `remount.yml` playbook to be "chained" with other playbooks, e.g.: ``` ansible-playbook -l kubelet remount.yml collectd.yml -b ``` --- remount.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/remount.yml b/remount.yml index e62f067..b22db4f 100644 --- a/remount.yml +++ b/remount.yml @@ -6,7 +6,7 @@ - hosts: all gather_facts: true vars: - remount_state: ro + remount_state: rw remount_fs: - / - /usr @@ -23,3 +23,5 @@ | list }} when: not item.options.startswith(remount_state) + tags: + - always