mirror of
https://github.com/iiab/iiab.git
synced 2025-02-15 04:32:11 +00:00
* change apache_data to apache_user in all * no libapach2 in centos. just php. no php-magick in centos * remove redundant vars entries * do not create apache user * missed one pound sign * soft code all references to apache_user * centos requires older setuptools * revert ansible_lsb.id in xsce.yml * try getting recent pip * move pip download to 2prep so that kalite success is not dependent on iiab coming first * still need to replace setuptools in kalite * add curl -- needed in debian * massivly substitue iiab for xsce, and rename files * completed runansible * centos fixes,install pip * appliance means no iptables rules * change to earlier version of setuptools for centos * delete file duplicate, hopefully unnecessary. generate the offline docs * wiki docs errors * create the admin group -- deleted earlier * use the --yes option with pip uninstall * base of repo moved from schoolserver to iiab, unleashkids.org->iiab.io * network detection broken due to tupo
65 lines
1.3 KiB
Django/Jinja
65 lines
1.3 KiB
Django/Jinja
#!/bin/bash
|
|
OS=`grep ^ID= /etc/*release|cut -d= -f2`
|
|
OS=${OS//\"/}
|
|
|
|
# enable this install config to be tracked
|
|
if [ ! -f /etc/iiab/uuid ]; then
|
|
uuidgen > /etc/iiab/uuid
|
|
fi
|
|
UUID=`cat /etc/iiab/uuid`
|
|
|
|
source /etc/iiab/iiab.env
|
|
cd $XSCE_DIR
|
|
|
|
# get current version
|
|
BRANCH=`git rev-parse --abbrev-ref HEAD`
|
|
COMMIT=`git rev-parse --verify HEAD`
|
|
|
|
if [ -d /usr/lib64/php ]
|
|
then
|
|
PHPLIB_DIR=/usr/lib64/php
|
|
else
|
|
if [ -d /usr/lib/php5 ]; then
|
|
PHPLIB_DIR=/usr/lib/php5
|
|
else
|
|
PHPLIB_DIR=/usr/lib/php
|
|
fi
|
|
fi
|
|
|
|
if [ -f /proc/device-tree/mfg-data/MN ]
|
|
then
|
|
XO_VERSION=`cat /proc/device-tree/mfg-data/MN`
|
|
else
|
|
XO_VERSION="none"
|
|
fi
|
|
|
|
if [ -f /etc/iiab/iiab.env ]
|
|
then
|
|
. /etc/iiab/iiab.env
|
|
if [ -z $BASE_VERSION ]
|
|
then
|
|
BASE_VERSION="0"
|
|
fi
|
|
BASE="$BASE_VERSION"
|
|
else
|
|
BASE="0"
|
|
fi
|
|
|
|
if [ -f /.preload ]
|
|
then
|
|
PRELOAD="True"
|
|
else
|
|
PRELOAD="False"
|
|
fi
|
|
ANSIBLE_VERSION=$(ansible --version|head -n 1|cut -f 2 -d " ")
|
|
cat <<EOF
|
|
{"phplib_dir" : "$PHPLIB_DIR",
|
|
"iiab_branch" : "$BRANCH",
|
|
"iiab_commit" : "$COMMIT",
|
|
"iiab_uuid" : "$UUID",
|
|
"xo_model" : "$XO_VERSION",
|
|
"iiab_base_ver" : "$BASE",
|
|
"ansble_version" : "$ANSIBLE_VERSION",
|
|
"os" : "$OS",
|
|
"iiab_preload" : "$PRELOAD"}
|
|
EOF
|