From 38ce25d53d30395feabc0d99c789253bcf385b27 Mon Sep 17 00:00:00 2001 From: A Holt Date: Thu, 2 Nov 2017 01:22:20 -0400 Subject: [PATCH] indent clauses within "case $OS in..." --- runansible | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/runansible b/runansible index 5db3ab21f..b7f0eb5b9 100755 --- a/runansible +++ b/runansible @@ -11,15 +11,15 @@ if [ ! -f ./vars/local_vars.yml ]; then case $OS in OLPC | fedora) - cp ./vars/olpc.localvars ./vars/local_vars.yml - ;; + cp ./vars/olpc.localvars ./vars/local_vars.yml + ;; centos | debian | ubuntu | raspbian) - cp ./vars/medium.localvars ./vars/local_vars.yml - ;; + cp ./vars/medium.localvars ./vars/local_vars.yml + ;; *) - echo "IIAB supports raspbian, debian, ubuntu, centos, and OLPC - exiting now..." - exit 1 - ;; + echo "IIAB supports raspbian, debian, ubuntu, centos, and OLPC - exiting now..." + exit 1 + ;; esac fi