summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Fennell <matthew@fennell.dev>2026-09-09 21:02:34 +0100
committerMatthew Fennell <matthew@fennell.dev>2026-09-09 21:02:34 +0100
commita9d2acc5987edc8425bfb39156befa7a14adae6b (patch)
treea435c4d6dd0af1d9db99e5ad08c3a545781d557c
parent184a6ac426a0cc5ed1ee9dbb5287affa94464142 (diff)
Remove ansible.cfg
Now that I am splitting the repo into smaller roles, this any ansible configuration should be shared. For instance, I want to install roles to /usr/local/share/ansible/roles, but that isn't present in the default roles_path. Since ansible doesn't merge config files and only considers the one with highest precedence, this means I should either define that override in every role and playbook, or delete all custom ansible.cfg's and define it once, in my ~/.ansible.cfg. I decided to do the latter, to reduce duplication.
-rw-r--r--ansible.cfg11
1 files changed, 0 insertions, 11 deletions
diff --git a/ansible.cfg b/ansible.cfg
deleted file mode 100644
index 219525e..0000000
--- a/ansible.cfg
+++ /dev/null
@@ -1,11 +0,0 @@
-# SPDX-FileCopyrightText: 2024 Matthew Fennell <matthew@fennell.dev>
-#
-# SPDX-License-Identifier: AGPL-3.0-or-later
-
-[connection]
-
-pipelining = true
-
-[defaults]
-
-interpreter_python = auto_silent