Initial commit of files

This commit is contained in:
2021-01-22 10:13:40 -05:00
parent 7081dcecc5
commit 56aa3a219b
47 changed files with 2157 additions and 0 deletions

13
sbin/swap-increase Executable file
View File

@ -0,0 +1,13 @@
#!/bin/sh
if [ -f /swapfile ]; then
echo "Increasing /swapfile size"
swapoff /swapfile
rm /swapfile
fallocate -l 16G /swapfile
chmod 600 /swapfile
mkswap /swapfile
swapon /swapfile
else
echo "No /swapfile!"
fi