~ubuntu-branches/ubuntu/saucy/openvpn/saucy-proposed

« back to all changes in this revision

Viewing changes to sample/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Stéphane Graber
  • Date: 2013-05-24 17:42:45 UTC
  • mfrom: (1.1.19) (10.2.22 sid)
  • Revision ID: package-import@ubuntu.com-20130524174245-g9y6wlforycufqy5
Tags: 2.3.1-2ubuntu1
* Merge from Debian unstable. Remaining changes:
  - debian/openvpn.init.d:
    + Do not use start-stop-daemon and </dev/null to avoid blocking boot.
    + Show per-VPN result messages.
    + Add "--script-security 2" by default for backwards compatabliity.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
#  OpenVPN -- An application to securely tunnel IP networks
 
3
#             over a single UDP port, with support for SSL/TLS-based
 
4
#             session authentication and key exchange,
 
5
#             packet encryption, packet authentication, and
 
6
#             packet compression.
 
7
#
 
8
#  Copyright (C) 2002-2010 OpenVPN Technologies, Inc. <sales@openvpn.net>
 
9
#  Copyright (C) 2006-2012 Alon Bar-Lev <alon.barlev@gmail.com>
 
10
#
 
11
 
 
12
MAINTAINERCLEANFILES = \
 
13
        $(srcdir)/Makefile.in
 
14
 
 
15
EXTRA_DIST = \
 
16
        sample-plugins \
 
17
        sample-config-files \
 
18
        sample-windows \
 
19
        sample-keys \
 
20
        sample-scripts
 
21
 
 
22
if WIN32
 
23
sample_DATA = \
 
24
        client.ovpn \
 
25
        server.ovpn \
 
26
        sample-windows/sample.ovpn
 
27
 
 
28
client.ovpn: sample-config-files/client.conf
 
29
        -rm -f client.ovpn
 
30
        cp "$(srcdir)/sample-config-files/client.conf" client.ovpn
 
31
server.ovpn: sample-config-files/server.conf
 
32
        -rm -f server.ovpn
 
33
        cp "$(srcdir)/sample-config-files/server.conf" server.ovpn
 
34
endif