summaryrefslogtreecommitdiffstats
path: root/bin/housekeeping.sh
blob: e8655e21f8d64e6b67993de41fe1c8079c3e62f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#/bin/bash

echo 
uptime
echo
df -h
echo

HOUSE=$(ls /chroots/)
if [ "$HOUSE" != "" ] ; then
	figlet "Warning:"
	echo
	echo "Probably manual cleanup needed:"
	echo
	echo "$ ls -la /chroots/"
	ls -la /chroots/
	exit 1
fi

echo "No problems found, all seems good."
figlet "Ok."