~svn/ubuntu/oneiric/subversion/ppa

« back to all changes in this revision

Viewing changes to debian/test.sh

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2005-06-29 13:09:32 UTC
  • mfrom: (1.1.1 upstream) (0.1.2 sarge)
  • Revision ID: james.westby@ubuntu.com-20050629130932-vzt4595e7q8wtfqy
Tags: 1.2.0-1ubuntu1
Resynchronise with Debian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
# This is the meager start to a script that will test the package.
 
3
 
 
4
SVN=/usr/bin/svn
 
5
SVNADMIN=/usr/bin/svnadmin
 
6
 
 
7
# create test repository
 
8
rm -rf /var/lib/svn/*
 
9
 
 
10
$SVNADMIN create --fs-type fsfs /var/lib/svn
 
11
$SVN mkdir -m '' file:///var/lib/svn/repos
 
12
 
 
13
# uncomment repos stuff
 
14
 
 
15
/etc/init.d/apache2 restart
 
16