File tree 2 files changed +15
-6
lines changed
2 files changed +15
-6
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
+ DIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd ) "
3
+ DATE=` date +%Y-%m-%d:%H:%M:%S`
2
4
totalm=$( free -m | awk ' /^Mem:/{print $2}' )
3
5
if [ " $totalm " -lt " 1800" ]; then
4
- echo " Countly requires at least 2Gb of RAM"
5
- exit 1
6
+ echo " Countly requires at least 2Gb of RAM"
7
+ if [ " $COUNTLY_OVERWRITE_MEM_REQUIREMENT " != " 1" ]; then
8
+ exit 1
9
+ else
10
+ echo " COUNTLY_OVERWRITE_MEM_REQUIREMENT set, running make.swap.sh"
11
+ bash $DIR /scripts/make.swap.sh 2>&1 | tee $DIR /../log/countly-install-$DATE .log
12
+ fi
6
13
fi
7
- DIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd ) "
8
- DATE=` date +%Y-%m-%d:%H:%M:%S`
9
14
if [ -f $DIR /offline_installer.sh ]; then
10
15
bash $DIR /offline_installer.sh 2>&1 | tee $DIR /../log/countly-install-$DATE .log
11
16
elif [ -f /etc/lsb-release ]; then
Original file line number Diff line number Diff line change 4
4
# and writes to /etc/fstab so that swap is enabled each time your instance is rebooted.
5
5
# Run it if your instance has a small memory (e.g less than 2GB) so it doesn't
6
6
# go out of RAM.
7
+ if free | awk ' /^Swap:/ {exit !$2}' ; then
8
+ echo " Swap space already exists, skipping make.swap.sh"
9
+ exit 1
10
+ fi
7
11
8
12
# amount in GB
9
13
AMOUNT=${1:- 4}
10
14
echo " Attempting to create $AMOUNT Gb swap file"
11
15
echo " Reserving space, may take a while"
12
16
13
- # create file
14
- dd if=/dev/zero of=/swapfile bs=1G count=$AMOUNT
17
+ # create file with small bs setting to allow the dd on low mem instances
18
+ dd if=/dev/zero of=/swapfile bs=1024 count=$(( $ AMOUNT* 1048576 ))
15
19
chmod 600 /swapfile
16
20
17
21
# make file a swap file
You can’t perform that action at this time.
0 commit comments