mirror of
https://github.com/iiab/iiab.git
synced 2025-03-09 15:40:17 +00:00
indent clauses within "case $OS in..."
This commit is contained in:
parent
6b8cdf7831
commit
38ce25d53d
1 changed files with 7 additions and 7 deletions
14
runansible
14
runansible
|
@ -11,15 +11,15 @@ if [ ! -f ./vars/local_vars.yml ]; then
|
||||||
|
|
||||||
case $OS in
|
case $OS in
|
||||||
OLPC | fedora)
|
OLPC | fedora)
|
||||||
cp ./vars/olpc.localvars ./vars/local_vars.yml
|
cp ./vars/olpc.localvars ./vars/local_vars.yml
|
||||||
;;
|
;;
|
||||||
centos | debian | ubuntu | raspbian)
|
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..."
|
echo "IIAB supports raspbian, debian, ubuntu, centos, and OLPC - exiting now..."
|
||||||
exit 1
|
exit 1
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue