ascension

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

control (890B)


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