ascension

Migrate DNS zones to the GNU Name System
Log | Files | Refs | README | LICENSE

control (858B)


      1 Package: python3-ascension
      2 Source: ascension
      3 Version: 0.6.1-1
      4 Architecture: all
      5 Maintainer: rexxnor <rexxnor+gnunet@brief.li>
      6 Installed-Size: 59
      7 Depends: python3-coverage, python3-dnspython, python3-docopt, python3-mock, python3-pbr, python3-six, python3:any (>= 3.3.2-2~)
      8 Section: python
      9 Priority: optional
     10 Description: Tool to migrate DNS Zones to the GNU Name System
     11  # Ascension
     12  .
     13  Tool to easily migrate existing DNS Zones into the GNU Name System using
     14  incremental zone transfers (AXFR/IXFR).
     15  .
     16  ## How to install
     17  To install the ascension simply execute one of the following commands in the
     18  freshly cloned directory:
     19  .
     20  ```bash
     21  # System wide installation
     22  sudo python3 setup.py install
     23  .
     24  # Local installation through virtualenv
     25  python3 -m venv .venv
     26  source .venv/bin/activate
     27  python3 setup.py install
     28  ```
     29  .
     30  ## How to install (Developer)