glusterfs8.sh 707 Bytes
Newer Older
1 2 3 4
#!/bin/sh

[ "$1" != "--run" ] && echo "Install glusterfs8 (or upgrade from glusterfs7)" && exit

5 6
. $(dirname $0)/common.sh

7
[ "$(epm print info -s)" = "alt" ] || { echo "Only ALTLinux is supported" ; exit 1 ; }
8 9 10 11 12 13 14

GFSOLD=glusterfs7
GFSNEW=glusterfs8

if epmqp --quiet ${GFSOLD}- ; then
    # Upgrade if was installed
    epmi $(epmqp --short $GFSOLD | grep -v rdma | sed -e "s|$GFSOLD|$GFSNEW|") ${GFSOLD}- ${GFSOLD}-client- python3-module-${GFSOLD}-
15
    epm installed $GFSNEW-server && serv glusterd on
16 17
else
    # Install all packages
18
    epmi ${GFSNEW}-cli ${GFSNEW}-client ${GFSNEW} || exit
19

Vitaly Lipatov's avatar
Vitaly Lipatov committed
20
    echo "You can install also '${GFSNEW}-server' if it is needed for this host"
21 22 23

    epme $(epmqp ${GFSOLD})
fi