- Timestamp:
- Jun 22, 2018, 4:38:33 PM (7 years ago)
- Location:
- trunk/ddt
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ddt/ddt
r227 r228 21 21 use strict; 22 22 #use warnings; 23 use version; our $VERSION = version->declare('0.9. 4');23 use version; our $VERSION = version->declare('0.9.5'); 24 24 25 25 use Getopt::Long qw(GetOptions); … … 3039 3039 ddt - management of computer names and IP addresses 3040 3040 3041 3041 3042 =head1 USAGE 3042 3043 … … 3079 3080 ddt version 3080 3081 3082 3083 =head1 DESCRIPTION 3084 3085 DDT is an acronym for DHCP-DNS-Tools. 3086 The previous command name was not C<ddt> but just C<dhcp-dns-tools>... 3087 In practise, DDT is an IP Address Management (IPAM) service. 3088 It has been used in the LEGI laboratory for over 10 years. 3089 3090 The tool is quite effective and tries to keep things simple 3091 but easily configurable for your site like a swiss army knife. 3092 Everything is saved in a YAML database 3093 and entries could be added, deleted, or modified by the command line. 3094 3095 3081 3096 =head1 COMMANDS 3082 3097 -
trunk/ddt/ddt.bash_completion
r225 r228 44 44 fi 45 45 46 } && complete -F _dhcp_dns_tools ddt 46 } && complete -F _ddt ddt 47 48 have dhcp-dns-tools && complete -F _ddt dhcp-dns-tools -
trunk/ddt/make-package-debian
r226 r228 25 25 cp config.sample.yml ${tmp_folder}/usr/share/ddt/ 26 26 cp ddt.bash_completion ${tmp_folder}/etc/bash_completion.d/ 27 (cd ${tmp_folder}/usr/bin; ln -s ddt dhcp-dns-tools) 28 (cd ${tmp_folder}/usr/share/man/man1; ln -s ddt.1.gz dhcp-dns-tools.1.gz) 27 29 28 30 # Data archive … … 42 44 Installed-Size: $(du -ks ${tmp_folder}|cut -f 1) 43 45 Maintainer: Gabriel Moreau <Gabriel.Moreau@univ-grenoble-alpes.fr> 44 Description: ddt - management of computer names and IP addresses 45 ddt (dhcp-dns-tools) is a small tool to maintain a set of computers/IP. 46 In order to help you in this task, ddt command has a set of action 47 to generated DHCP and DNS configuration files. 46 Description: dhcp-dns-tools management of computer names and IP addresses 47 DDT is an acronym for DHCP-DNS-Tools. 48 In practise, DDT is an IP Address Management (IPAM) service. 49 It has been used in the LEGI laboratory for over 10 years. 50 ddt (dhcp-dns-tools) is a small tool to maintain a set of computers/IP. 51 In order to help you in this task, ddt command has a set of action 52 to generated DHCP and DNS configuration files. 53 54 The tool is quite effective and tries to keep things simple 55 but easily configurable for your site like a swiss army knife. 56 Everything is saved in a YAML database 57 and entries could be added, deleted, or modified by the command line. 48 58 Homepage: http://servforge.legi.grenoble-inp.fr/projects/soft-trokata/wiki/SoftWare/DDT 49 59 END
Note: See TracChangeset
for help on using the changeset viewer.