]> git.phdru.name Git - ansible.git/blobdiff - playbooks/debian-init-system.sh
Rename playbooks: debian-* -> debian/*
[ansible.git] / playbooks / debian-init-system.sh
diff --git a/playbooks/debian-init-system.sh b/playbooks/debian-init-system.sh
deleted file mode 100755 (executable)
index b55955d..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-#! /bin/sh
-
-if [ -z "$1" ]; then
-   echo "Usage: $0 host [...params...]" >&2
-   exit 1
-fi
-
-host="$1"
-shift
-
-cd "`dirname \"$0\"`" &&
-
-# Passwordless access isn't configured yet; use `ssh` connection sharing.
-# `sudo` isn't configured yet too; use `su` and ask for root password.
-ansible-playbook debian/init-system.yml "$@" -e hosts="$host" \
-   --become-method=su -K &&
-exec ansible-playbook debian/init-system2.yml "$@" -e hosts="$host"