#!/bin/bash

. ./param_bash.ini

clear
START "Create $MAIN_USER user and $GROUP group as root user" "ikit_2_5"
if [ ! -w /etc/passwd ] ; then
   ERROR "Please run the script as root user only" "ikit_2_5"
fi
EXL_GID=201
APP_UID=208

bash -f add_user.sh $MAIN_USER $APP_HOME "${APP_UID}" "exlibris" "${EXL_GID}" dps

if [ "$?" == "0" ] ; then
    DONE "" "ikit_2_5"
else
    ERROR "" "ikit_2_5"
fi
