Rename drive.sh to pack-image.sh
[backups/.git] / scripts / restore-header.sh
1 #!/bin/sh
2 export rundir=/tmp/restore-$(date +%Y%m%d%H%M%S)
3 if ! mkdir $rundir; then
4   echo >&2 "Cannot create temp dir"
5   exit 1
6 fi
7
8 unset CDPATH
9 export mountdir=$(cd $(dirname $0) && pwd)
10
11 SKIP=`awk '/^__ARCHIVE_FOLLOWS__/ { print NR + 1; exit 0; }' $0`
12
13 # take the archive portion of this file and pipe it to tar
14 tail +$SKIP $0 | tar xzf - -C $rundir
15
16 cd $rundir
17 exec ./restore-script.sh ${1+"$@"}
18
19 __ARCHIVE_FOLLOWS__