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

« back to all changes in this revision

Viewing changes to win/build_exe.py

  • 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
 
from config import main as config_main
2
 
from build import main as build_openvpn
3
 
from build_ddk import main as build_ddk
4
 
from sign import main as sign
5
 
from make_dist import main as make_dist
6
 
 
7
 
def main(config):
8
 
    config_main(config)
9
 
    build_openvpn()
10
 
    make_dist(config, tap=False)
11
 
 
12
 
# if we are run directly, and not loaded as a module
13
 
if __name__ == "__main__":
14
 
    from wb import config
15
 
    main(config)