Skip to content

Commit c52958d

Browse files
author
Kristan Kenney
committed
Ensure disk quota variable is correctly set during install
1 parent e18e37e commit c52958d

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

install/hst-install-debian.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1070,6 +1070,8 @@ fi
10701070
# Disk quota
10711071
if [ "$quota" = 'yes' ]; then
10721072
echo "DISK_QUOTA='yes'" >> $HESTIA/conf/hestia.conf
1073+
else
1074+
echo "DISK_QUOTA='no'" >> $HESTIA/conf/hestia.conf
10731075
fi
10741076

10751077
# Backups

install/hst-install-ubuntu.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1120,6 +1120,8 @@ fi
11201120
# Disk quota
11211121
if [ "$quota" = 'yes' ]; then
11221122
echo "DISK_QUOTA='yes'" >> $HESTIA/conf/hestia.conf
1123+
else
1124+
echo "DISK_QUOTA='no'" >> $HESTIA/conf/hestia.conf
11231125
fi
11241126

11251127
# Backups

0 commit comments

Comments
 (0)