ascension

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

control (839B)


      1 Source: ascension
      2 Maintainer: rexxnor <rexxnor+gnunet@brief.li>
      3 Section: python
      4 Priority: optional
      5 Build-Depends: python3-setuptools, python3-all, debhelper (>= 7.4.3)
      6 Standards-Version: 3.9.1
      7 
      8 
      9 
     10 
     11 
     12 Package: python3-ascension
     13 Architecture: all
     14 Depends: ${misc:Depends}, ${python3:Depends}
     15 Description: Tool to migrate DNS Zones to the GNU Name System
     16  # Ascension
     17  .
     18  Tool to easily migrate existing DNS Zones into the GNU Name System using
     19  incremental zone transfers (AXFR/IXFR).
     20  .
     21  ## How to install
     22  To install the ascension simply execute one of the following commands in the
     23  freshly cloned directory:
     24  .
     25  ```bash
     26  # System wide installation
     27  sudo python3 setup.py install
     28  .
     29  # Local installation through virtualenv
     30  python3 -m venv .venv
     31  source .venv/bin/activate
     32  python3 setup.py install
     33  ```
     34  .
     35  ## How to install (Developer)
     36