/[BackupPC]/trunk/Makefile
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/Makefile

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 45 by dpavlin, Sat Aug 20 11:39:05 2005 UTC revision 61 by dpavlin, Sun Aug 21 15:42:40 2005 UTC
# Line 1  Line 1 
1  tmp=/tmp/backuppc-svn/  tmp=/tmp/backuppc-svn/
2  target=/data/backuppc/  target=/data/backuppc/
3    profile_opt=
4    profile_file=profile
5    db=backuppc
6    
7  all:  all:
8          @echo "make install to install BackupPC using sudo"          @echo "make install to install BackupPC using sudo"
# Line 23  stop: Line 26  stop:
26  install-etc:  install-etc:
27          test -d $(target)/etc || cp -r etc $(target) && chmod 755 $(target)/etc/backuppc          test -d $(target)/etc || cp -r etc $(target) && chmod 755 $(target)/etc/backuppc
28    
29    update:
30            sudo -u backuppc /data/backuppc/bin/BackupPC_updatedb
31    
32  asa:  asa:
33          rm -Rf $(tmp)          rm -Rf $(tmp)
34          svn export . $(tmp)          svn export . $(tmp)
35          rsync -rav $(tmp) 10.210.99.1:backuppc-svn/          rsync -rav $(tmp) 10.210.99.1:backuppc-svn/
36          rm -Rf $(tmp)          rm -Rf $(tmp)
37    
38  profile:  profile: test
39          test -e tmon.out || touch tmon.out          test -e tmon.out || touch tmon.out
40          sudo chown backuppc tmon.out          sudo chown backuppc tmon.out
41          sudo -u backuppc perl -d:DProf /data/backuppc/bin/BackupPC_updatedb -v 2          dropdb $(db) || echo "skip drop db"
42            createdb $(db)
43            date > $(profile_file)
44            echo "## NORMAL RUN" >> $(profile_file)
45            sudo -u backuppc /data/backuppc/bin/BackupPC_updatedb -c $(profile_opt) | tee -a $(profile_file)
46            echo "## DProf RUN" >> $(profile_file)
47            sudo -u backuppc perl -d:DProf /data/backuppc/bin/BackupPC_updatedb -d $(profile_opt)
48            dprofpp 2>&1 | tee -a $(profile_file)
49            echo "## DBI_PROFILE RUN" >> $(profile_file)
50            DBI_PROFILE=2 sudo -u backuppc /data/backuppc/bin/BackupPC_updatedb -d $(profile_opt) 2>&1 | tee -a $(profile_file)
51            mv $(profile_file) profile.`perl -e 'my @p = glob("profile.[0-9]*"); print scalar @p + 1'`
52    

Legend:
Removed from v.45  
changed lines
  Added in v.61

  ViewVC Help
Powered by ViewVC 1.1.26