~ubuntu-branches/ubuntu/lucid/ebox-openvpn/lucid

« back to all changes in this revision

Viewing changes to tools/ebox-openvpn-enable

  • Committer: Bazaar Package Importer
  • Author(s): Chuck Short
  • Date: 2008-02-27 13:31:29 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080227133129-6mpzfq43hghuxtaz
Tags: 0.11.99-0ubuntu1
New upstream version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
 
 
3
 
 
4
# don't start openvpn services 
 
5
update-rc.d -f openvpn remove
 
6
 
 
7
# XXX quagga don't start quagga services
 
8
update-rc.d -f quagga remove
 
9
 
 
10
# create zebra.conf if it does not exist
 
11
test -e /etc/quagga/zebra.conf || touch /etc/quagga/zebra.conf
 
12
# create zebra.conf if it does not exist
 
13
test -e /etc/quagga/ripd.conf || touch /etc/quagga/ripd.conf
 
14