Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/commands/snapshot
blob: 92bfa533de93c9af4b1c1f9d6d883e917165392e (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/bin/sh

commandsdir=`dirname "$0"`
destdir=`dirname "$commandsdir"`
filename=snapshot.tar
rootdir=sugar-snapshot

mkdir -p $destdir
ln -s `pwd` $destdir/$rootdir

cd $destdir

tar cvhf $filename \
    $rootdir/config \
    $rootdir/devbot \
    $rootdir/install \
    $rootdir/commands/check-system \
    $rootdir/commands/common.py \
    $rootdir/commands/bashrc \
    $rootdir/commands/run \
    $rootdir/commands/shell

rm $rootdir
mkdir $rootdir

runsugarscript=$rootdir/run-sugar.sh

cat > $runsugarscript << "EOF"
#!/bin/sh

commands/run
EOF

chmod +x $runsugarscript

runshellscript=$rootdir/run-shell.sh

cat > $runshellscript << "EOF"
#!/bin/sh

commands/shell
EOF

chmod +x $runshellscript

tar rvh -f $filename $runshellscript $runsugarscript

rm -rf $rootdir

rm -f $filename.xz
xz --verbose $filename