mirror of
https://github.com/iiab/iiab.git
synced 2025-02-12 19:22:24 +00:00
* move local_facts, test for it, cp if necess * got os wrong -- not OS * change /etc/*release, vars/filenames * add os_ver * add os_ver to iiab.env * remove uuid generation for local_facts * next * delete debugging lines * fetch the uuid, and put it in ini file * be more specific about uuid * need braces in set_fact * hyphen in OS-version * go back to OS.yml based upon os_ver * remove debug * oops VERSION_ID->OS_VER * issure error message when OS not in case statement
71 lines
1.5 KiB
Bash
Executable file
71 lines
1.5 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
# copy var files to /etc/iiab for subsequent use
|
|
mkdir -p /etc/iiab
|
|
if [ ! -f /etc/iiab/config_vars.yml ]; then
|
|
echo "{}" > /etc/iiab/config_vars.yml
|
|
fi
|
|
|
|
# if vars/local_vars.yml is missing, put a default one in place
|
|
if [ ! -f ./vars/local_vars.yml ]; then
|
|
OS=`grep ^ID= /etc/*release|cut -d= -f2`
|
|
OS=${OS//\"/}
|
|
if [ "$OS" = "centos" ]; then
|
|
cp ./vars/centos.localvars ./vars/local_vars.yml
|
|
else
|
|
cp ./vars/debian.localvars ./vars/local_vars.yml
|
|
fi
|
|
fi
|
|
|
|
if [ -f /etc/iiab/iiab.env ]
|
|
then
|
|
. /etc/iiab/iiab.env
|
|
cd $XSCE_DIR
|
|
else
|
|
XSCE_DIR=/opt/iiab/iiab
|
|
fi
|
|
|
|
if [ ! -f iiab.yml ]
|
|
then
|
|
echo "XSCE Playbook not found."
|
|
echo "Please run this command from the top level of the git repo."
|
|
echo "Exiting."
|
|
exit
|
|
fi
|
|
|
|
if [ ! -f /etc/ansible/facts.d/local_facts.fact ]; then
|
|
mkdir -p /etc/ansible/facts.d
|
|
fi
|
|
cp ./scripts/local_facts.fact /etc/ansible/facts.d/local_facts.fact
|
|
|
|
PLAYBOOK="iiab.yml"
|
|
INVENTORY="ansible_hosts"
|
|
CWD=`pwd`
|
|
echo "Running local playbooks! "
|
|
|
|
XSDOMAIN=""
|
|
|
|
# Pass in Existing Domain
|
|
if [ -f /etc/sysconfig/xs_domain_name ]
|
|
then
|
|
XSDOMAIN=`cat /etc/sysconfig/xs_domain_name`
|
|
fi
|
|
|
|
# Or accept Domain on command line
|
|
if [ x"$1" != x ]
|
|
then
|
|
XSDOMAIN=$1
|
|
fi
|
|
|
|
# Pass in git location
|
|
if [ x"$XSDOMAIN" != x ]
|
|
then
|
|
ARGS="--extra-vars '{\"iiab_domain\":\"$XSDOMAIN\"}'"
|
|
else
|
|
ARGS=""
|
|
fi
|
|
|
|
export ANSIBLE_LOG_PATH="$XSCE_DIR/iiab-install.log"
|
|
ansible -m setup -i $INVENTORY localhost --connection=local >> /dev/null
|
|
|
|
ansible-playbook -i $INVENTORY $PLAYBOOK ${ARGS} --connection=local
|