aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorclyhtsuriva <aimeric@adjutor.xyz>2025-12-25 20:58:34 +0100
committerclyhtsuriva <aimeric@adjutor.xyz>2025-12-25 20:58:34 +0100
commitb616376896a4becc79a9bc6be9e66107deb6dcd1 (patch)
treef1218ec1eb633f06635b78588a892b219ab69d65
parentaea979a49280a58000b6127598bd31660e72687c (diff)
Updates `update-everything` to clear a deprecation warningHEADmaster
The '--inventory-file' argument is deprecated. This feature will be removed from ansible-core version 2.23. Use -i or --inventory instead.
-rwxr-xr-xbin/update-everything.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/update-everything.sh b/bin/update-everything.sh
index e69f705..c6b4798 100755
--- a/bin/update-everything.sh
+++ b/bin/update-everything.sh
@@ -54,7 +54,7 @@ remote_update(){
export ANSIBLE_CONFIG="$HOME/workbench/homelab-iac/ansible/ansible.cfg"
ansible-playbook -v -b \
- --inventory-file "$HOME/workbench/homelab-iac/ansible/inventory.yaml" \
+ --inventory "$HOME/workbench/homelab-iac/ansible/inventory.yaml" \
"$HOME/workbench/homelab-iac/ansible/playbooks/update_system.yml"
}