File: maketext

package info (click to toggle)
openvpn 2.1~rc11-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 4,556 kB
  • ctags: 5,488
  • sloc: ansic: 54,327; sh: 5,076; makefile: 294; perl: 234
file content (20 lines) | stat: -rw-r--r-- 561 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh

# get version.nsi definitions
. autodefs/defs.sh

mkdir -p $GENOUT/text &>/dev/null

# build license file
cat COPYING COPYRIGHT.GPL >$GENOUT/text/license.txt

# copy install file
cp INSTALL-win32.txt $GENOUT/text/INSTALL-win32.txt

# copy sample configuration files and docs
s=$GENOUT/samples
mkdir -p $s &>/dev/null
cp sample-config-files/client.conf $s/client.$PRODUCT_FILE_EXT
cp sample-config-files/server.conf $s/server.$PRODUCT_FILE_EXT
cp install-win32/sample.ovpn $s/sample.$PRODUCT_FILE_EXT
cp easy-rsa/1.0/openssl.cnf $s/openssl.cnf.sample