Package tao-cosconcurrency: Скрипты

Post install

1
2
3
4
5
6
7
/sbin/chkconfig --add tao-cosconcurrency

# ================================================================
# pre uninstall
# ================================================================

# ---------------- tao-cosnaming ----------------
Post uninstall

1
2
3
4
5
6
7
8
9
if [ "$1" -ge "1" ]; then
    /sbin/service tao-cosconcurrency condrestart > /dev/null 2>&1
fi

# ================================================================
# files
# ================================================================

# ---------------- ace ----------------
Pre install

getent group tao >/dev/null || /usr/sbin/groupadd -r tao
getent passwd tao >/dev/null || \
/usr/sbin/useradd -r -g tao -d /etc/tao -s /sbin/nologin \
    -c "TAO Services" tao
exit 0

# ================================================================
# post install
# ================================================================

# ---------------- tao-cosnaming ----------------
Pre uninstall

if [ $1 = 0 ]; then
    /sbin/service tao-cosconcurrency stop > /dev/null 2>&1
    /sbin/chkconfig --del tao-cosconcurrency
fi

# ================================================================
# post uninstall
# ================================================================

# ---------------- tao-cosnaming ----------------