We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb5191a commit f9db98cCopy full SHA for f9db98c
install/upgrade/0.9.8-29.sh
@@ -20,9 +20,8 @@ mkdir -p $HESTIA_BACKUP/packages/
20
21
# Detect OS
22
case $(head -n1 /etc/issue | cut -f 1 -d ' ') in
23
- Debian) type="debian" ;;
24
- Ubuntu) type="ubuntu" ;;
25
- *) type="NoSupport" ;;
+ Debian) os="debian" ;;
+ Ubuntu) os="ubuntu" ;;
26
esac
27
28
# Detect release for Debian
@@ -93,9 +92,9 @@ if [ ! -z "$MAIL_SYSTEM" ]; then
93
92
APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE=1 apt-key add /tmp/z-push_signing.key > /dev/null 2>&1
94
else
95
if [ "$release" -eq 8 ]; then
96
- $zpush_os='Debian_8.0'
+ zpush_os='Debian_8.0'
97
98
- $zpush_os='Debian_9.0'
+ zpush_os='Debian_9.0'
99
fi
100
101
echo "deb http://repo.z-hub.io/z-push:/final/$zpush_os/ /" > $apt/z-push.list
0 commit comments