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.
2 parents ab8b7c6 + b1838e6 commit bf68d8aCopy full SHA for bf68d8a
runners/katacoda/templates/scripts/intro_background.sh
@@ -23,6 +23,13 @@ while [ "$i" -le $STEPS ]; do
23
i=$(( i + 1 ))
24
done
25
26
+#increase swap size by 4 GB by adding a new swap file
27
+mkdir /root/dev
28
+fallocate -l 4G /root/dev/md-0
29
+chmod 600 /root/dev/md-0
30
+mkswap /root/dev/md-0
31
+swapon /root/dev/md-0
32
+
33
#write 'Finished' in status file
34
#the setup script checks the status file for this string
35
echo "Finished" > $STATUS_FILE
0 commit comments