Add debug

This commit is contained in:
Santiago Lo Coco 2022-01-03 20:29:31 -03:00
parent e9aba4cc6d
commit 25415b6308
1 changed files with 4 additions and 4 deletions

View File

@ -130,10 +130,10 @@ getSize() {
}
createSwapfile() {
dd if=/dev/zero of=$swapfile bs=1M count=${size} status=progress
chmod 600 $swapfile
mkswap $swapfile
swapon $swapfile
dd if=/dev/zero of=$swapfile bs=1M count=${size} status=progress 2>&1 | debug
chmod 600 $swapfile 2>&1 | debug
mkswap $swapfile 2>&1 | debug
swapon $swapfile 2>&1 | debug
}
autoPart() {