source: titan/oealliance/sbin/backupdream.sh @ 40393

Last change on this file since 40393 was 40393, checked in by obi, 7 years ago

add oealliance start scripts

  • Property svn:executable set to *
File size: 489 bytes
Line 
1#!/bin/sh
2# backup by gost
3
4echo "[backup.sh] startet"
5source=$1
6noinfo=$2
7
8rm /tmp/.backup_ok
9touch /tmp/.backup_start
10
11echo "SICHERUNG nicht implementiert"
12if [ $noinfo != "1" ]; then
13        echo "infobox1"
14        #infobox 30 "SICHERUNG" "$name Sicherung gestartet" &
15        infobox 5 "SICHERUNG" "nicht implementiert" &
16fi
17sleep 5
18
19#mkdir /tmp/data
20#mount /dev/mmcblk0p3 /tmp/data
21
22#umount /tmp/data
23
24echo "[backup.sh] sync"
25sync
26
27touch /tmp/.backup_ok
28rm /tmp/.backup_start
29
30echo "[backup.sh] done"
31
32
Note: See TracBrowser for help on using the repository browser.