aboutsummaryrefslogtreecommitdiffstats
path: root/apply_roles
diff options
context:
space:
mode:
Diffstat (limited to 'apply_roles')
-rwxr-xr-xapply_roles17
1 files changed, 0 insertions, 17 deletions
diff --git a/apply_roles b/apply_roles
deleted file mode 100755
index 8b0aa51..0000000
--- a/apply_roles
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/bash
-#
-# Apply specific ansible tags/roles to selected machine
-
-# @usage
-# Help fonction
-function usage() {
- echo "Usage: ${0} \"role1 role2 .. roleN\" [ANSIBLE_ARGUMENTS]"
-}
-
-for role in ${1}; do
- ansible_args=$(echo "${@:2}")
- ansible-playbook ${ansible_args} --tags "${role}"
-done
-
-
-
remember that computers suck.