summaryrefslogtreecommitdiff
path: root/nfs/scripts/image_capture.sh
blob: 7c23c301b3cbc15f8daa8270d5fcd8542a312edc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/busybox sh
# Should only started from autorun.sh, it defines some helper functions and variables)

# Prepare capture
year=$(date +%Y)
monthday=$(date +%m-%d)
outdir="$imagedir/$year/$hostname/$monthday"

if [ -d "$outdir" ]
then	rm -r "$outdir"
fi
mkdir -p "$outdir"
cd "$outdir"
mkdir logs
date >logs/date.log

# Print all variables and start the capture using the customized script (image_capture_<hostname>.sh)
setterm -bold on
env
setterm -bold off
echo_color green black "$scriptdir/image_capture_${hostname}.sh script will run on tty1 now"
pause10s
source $scriptdir/image_capture_${hostname}.sh

date >>logs/date.log