13 lines
451 B
Bash
13 lines
451 B
Bash
#!/bin/bash
|
|
|
|
if [ "$shortdist" = "ubu1804" ] || [ "$shortdist" = "ubu2004" ] || [ "$shortdist" = "deb10" ] || [ "$shortdist" = "deb11" ] ; then
|
|
# Debian/Ubunbtu redis variables
|
|
redisService=redis-server
|
|
|
|
elif [ "$shortdist" = "el8" ]; then
|
|
# Centos redis variable
|
|
redisService=redis
|
|
fi
|
|
|
|
|
|
curl --retry 7 --retry-delay 5 -s https://git.bprieshof.nl/Work/PKGRepoSetup/raw/branch/Main/Setup-Repo.sh |repo=redis osrel=$shortdist bash > $OUTPUT 2>&1 |