mirror of https://github.com/zulip/zulip.git
Vagrantfile: Fix some incorrect indentation in shell script.
This commit is contained in:
parent
8d00111a27
commit
a9d1042718
|
@ -108,7 +108,7 @@ set -o pipefail
|
||||||
# If the host is running SELinux remount the /sys/fs/selinux directory as read only,
|
# If the host is running SELinux remount the /sys/fs/selinux directory as read only,
|
||||||
# needed for apt-get to work.
|
# needed for apt-get to work.
|
||||||
if [ -d "/sys/fs/selinux" ]; then
|
if [ -d "/sys/fs/selinux" ]; then
|
||||||
sudo mount -o remount,ro /sys/fs/selinux
|
sudo mount -o remount,ro /sys/fs/selinux
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Set default locale, this prevents errors if the user has another locale set.
|
# Set default locale, this prevents errors if the user has another locale set.
|
||||||
|
@ -126,8 +126,8 @@ ln -nsf /srv/zulip ~/zulip
|
||||||
|
|
||||||
# Run any custom provision hooks the user has configured
|
# Run any custom provision hooks the user has configured
|
||||||
if [ -f /srv/zulip/tools/custom_provision ]; then
|
if [ -f /srv/zulip/tools/custom_provision ]; then
|
||||||
chmod +x /srv/zulip/tools/custom_provision
|
chmod +x /srv/zulip/tools/custom_provision
|
||||||
/srv/zulip/tools/custom_provision
|
/srv/zulip/tools/custom_provision
|
||||||
fi
|
fi
|
||||||
SCRIPT
|
SCRIPT
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue