1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +00:00

cmdline tweeks

This commit is contained in:
Jerry Vonau 2019-10-16 10:37:33 -05:00
parent 29b28d8393
commit 36defde4ae
2 changed files with 44 additions and 13 deletions

22
runrole
View file

@ -4,6 +4,7 @@ INVENTORY="ansible_hosts"
PLAYBOOK="run-one-role.yml"
ARGS=""
CWD=`pwd`
APPS=/etc/iiab/config_vars2.yml
if [ ! -f $PLAYBOOK ]; then
echo "Exiting: IIAB Playbook not found."
echo "Please run this in /opt/iiab/iiab (top level of the git repo)."
@ -18,19 +19,25 @@ if [[ $# -eq 0 ]] ; then
exit 0
fi
# needed for stage 1-3 if not installed yet
if [ ! -f $APPS ]; then
mkdir -p /etc/iiab
touch $APPS
fi
if [ "$1" == "--reinstall" ]; then
ARGS="$ARGS --extra-vars reinstall=True"
if [ ! $2 == "internetarchive" ]; then # special handling
if [ $2 == "calibre-web" ]; then # role directory & installed marker differ
sed -i -e '/^calibreweb/d' /etc/iiab/config_vars2.yml
sed -i -e '/^calibreweb/d' $APPS
fi
if [ $2 == "captive-portal" ]; then # role directory & installed marker differ
sed -i -e '/^captiveportal/d' /etc/iiab/config_vars2.yml
sed -i -e '/^captiveportal/d' $APPS
fi
if [ $2 == "bluetooth" ]; then # role directory & installed marker differ
sed -i -e '/^pan_bluetooth/d' /etc/iiab/config_vars2.yml
sed -i -e '/^pan_bluetooth/d' $APPS
fi
sed -i -e "/^$2/d" /etc/iiab/config_vars2.yml
sed -i -e "/^$2/d" $APPS
fi
shift 1
fi
@ -41,12 +48,5 @@ else
export ANSIBLE_LOG_PATH="$CWD/iiab-debug.log"
fi
# Is the following stanza nec?
if [ ! -f /etc/iiab/config_vars2.yml ]; then
mkdir -p /etc/iiab
echo "{}" > /etc/iiab/config_vars2.yml
fi
ansible -m setup -i $INVENTORY localhost ${ARGS} --connection=local | grep python
ansible-playbook -i $INVENTORY $PLAYBOOK ${ARGS} --connection=local -e "role_to_run=$1"