Changes between Version 7 and Version 8 of OpenvpnSoftwareRepos


Ignore:
Timestamp:
11/05/13 13:11:15 (10 years ago)
Author:
Samuli Seppänen
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OpenvpnSoftwareRepos

    v7 v8  
    1212All packages are available in ''i386'' and ''amd64/x86_64'' flavours. Even if a package is built on a particular OS, it does not mean it won't work on older and/or newer versions of the same distro, or even on a different operating system. If you encountered any issues with the package, please file a new [wiki:TesterDocumentation#Reportingbugs bug report].
    1313
    14 = Using repos.openvpn.net =
     14= Using swupdate.openvpn.net =
    1515
    16 We have several supported OpenVPN (OSS) repositories. To use them, blindly follow these instructions:
     16We have several supported OpenVPN (OSS) repositories. To use them, first import the public GPG used to sign the packages:
    1717
    18  * [http://repos.openvpn.net/repos/apt/conf/swupdate.openvpn.net-squeeze-stable.txt Stable releases for Debian Squeeze (6.0)]
    19  * [http://repos.openvpn.net/repos/apt/conf/swupdate.openvpn.net-lucid-stable.txt Stable releases for Ubuntu Lucid Lynx (10.04)]
    20  * [http://repos.openvpn.net/repos/apt/conf/swupdate.openvpn.net-precise-stable.txt Stable releases for Ubuntu Precise Pangolin (12.04)]
     18{{{
     19$ wget -O - https://swupdate.openvpn.net/repos/repo-public.gpg|apt-key add -
     20}}}
    2121
    22 At the moment (October 2013) the building and packaging system is being migrated from dedicated build VMs to ''sbuild'' (Debian and Ubuntu) and ''Mock'' (RedHat derivatives). This should help provide a larger set of packages for various operating system flavours.
     22Next you need to create a source.list fragment so that apt can find the new OpenVPN packages:
    2323
    24 For a full list of available repositories (some discontinued, some not yet in use) look here:
     24{{{
     25$ cd /etc/apt/sources.list.d
     26$ nano swupdate.openvpn.net.list
     27}}}
    2528
    26  * [http://repos.openvpn.net/repos/apt/conf List of apt repositories]
    27  * [http://repos.openvpn.net/repos/yum/conf List of yum repositories]
     29The contents of the ''swupdate.openvpn.net.list'' file should be
     30
     31{{{
     32deb http://swupdate.openvpn.net/apt <oscodename> main
     33}}}
     34
     35Where <oscodename> depends your distribution:
     36
     37 * ''squeeze'' (Debian 6.x)
     38 * ''wheezy'' (Debian 7.x)
     39 * ''lucid'' (Ubuntu 10.04)
     40 * ''precise'' (Ubuntu 12.04)
     41 * ''raring'' (Ubuntu 13.04)
     42 * ''saucy'' (Ubuntu 13.10)
     43
     44For example:
     45
     46{{{
     47deb http://swupdate.openvpn.net/apt wheezy main
     48}}}
     49
     50Save the file and you're set to installing OpenVPN.
    2851
    2952= Installing OpenVPN =
     
    3457$ apt-get update && apt-get install openvpn
    3558}}}
    36 
    37 On !RedHat/Fedora use
    38 
    39 {{{
    40 $ yum install openvpn
    41 }}}