1 | #!/bin/bash |
---|
2 | # |
---|
3 | # 2018/06/19 Gabriel Moreau <Gabriel.Moreau@univ-grenoble-alpes.fr> |
---|
4 | |
---|
5 | trap '[ -n "${tmp_folder}" -a -d "${tmp_folder}" ] && rm -rf "${tmp_folder}"' QUIT |
---|
6 | |
---|
7 | export PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin |
---|
8 | export LANG=C |
---|
9 | |
---|
10 | tmp_folder=$(mktemp --directory /tmp/ddt-XXXXXX) |
---|
11 | [ -n "${tmp_folder}" -a -d "${tmp_folder}" ] || exit 1 |
---|
12 | |
---|
13 | # Set Name and Version |
---|
14 | PKG_NAME=ddt |
---|
15 | CODE_VERSION=$(grep 'version->declare' ddt | cut -f 2 -d "'") #' |
---|
16 | PKG_VERSION=6 |
---|
17 | |
---|
18 | # Create future tree |
---|
19 | mkdir -p ${tmp_folder}/usr/bin |
---|
20 | mkdir -p ${tmp_folder}/usr/share/man/man1 |
---|
21 | mkdir -p ${tmp_folder}/usr/share/ddt |
---|
22 | mkdir -p ${tmp_folder}/etc/bash_completion.d |
---|
23 | cp ddt ${tmp_folder}/usr/bin/ |
---|
24 | cp ddt.1.gz ${tmp_folder}/usr/share/man/man1/ |
---|
25 | cp LICENSE.txt ${tmp_folder}/usr/share/ddt/ |
---|
26 | cp config.sample.yml ${tmp_folder}/usr/share/ddt/ |
---|
27 | cp ddt.bash_completion ${tmp_folder}/etc/bash_completion.d/ |
---|
28 | (cd ${tmp_folder}/usr/bin; ln -s ddt dhcp-dns-tools) |
---|
29 | (cd ${tmp_folder}/usr/share/man/man1; ln -s ddt.1.gz dhcp-dns-tools.1.gz) |
---|
30 | chmod -R a+rx ${tmp_folder}/usr/bin/ddt |
---|
31 | chmod -R a+rX,go-w ${tmp_folder}/usr |
---|
32 | chmod -R a+rX,go-w ${tmp_folder}/etc |
---|
33 | |
---|
34 | # Data archive |
---|
35 | rm -f ${tmp_folder}/data.tar.gz |
---|
36 | (cd ${tmp_folder}; tar --owner root --group root -czf data.tar.gz ./usr ./etc) |
---|
37 | |
---|
38 | # Control file |
---|
39 | cat <<END > ${tmp_folder}/control |
---|
40 | Package: ${PKG_NAME} |
---|
41 | Version: ${CODE_VERSION}-${PKG_VERSION} |
---|
42 | Section: utils |
---|
43 | Tag: implemented-in::perl, interface::commandline, role::program |
---|
44 | Priority: optional |
---|
45 | Depends: perl, perl-base, perl-modules, libyaml-syck-perl, libnet-netmask-perl, libreadonly-perl, libfile-touch-perl, libtext-table-perl |
---|
46 | Suggests: libyaml-shell-perl | yamllint, perl-doc, isc-dhcp-server, bind9 |
---|
47 | Architecture: all |
---|
48 | Installed-Size: $(du -ks ${tmp_folder}|cut -f 1) |
---|
49 | Maintainer: Gabriel Moreau <Gabriel.Moreau@univ-grenoble-alpes.fr> |
---|
50 | Description: dhcp-dns-tools management of computer names and IP addresses |
---|
51 | DDT is an acronym for DHCP-DNS-Tools. |
---|
52 | In practise, DDT is an IP Address Management (IPAM) service. |
---|
53 | It has been used in the LEGI laboratory for over 10 years. |
---|
54 | ddt (dhcp-dns-tools) is a small tool to maintain a set of computers/IP. |
---|
55 | In order to help you in this task, ddt command has a set of action |
---|
56 | to generated DHCP and DNS configuration files. |
---|
57 | . |
---|
58 | The tool is quite effective and tries to keep things simple |
---|
59 | but easily configurable for your site like a swiss army knife. |
---|
60 | Everything is saved in a YAML database |
---|
61 | and entries could be added, deleted, or modified by the command line. |
---|
62 | Homepage: http://servforge.legi.grenoble-inp.fr/projects/soft-trokata/wiki/SoftWare/DDT |
---|
63 | END |
---|
64 | |
---|
65 | # Control archive |
---|
66 | rm -f ${tmp_folder}/control.tar.gz |
---|
67 | (cd ${tmp_folder}; tar --owner root --group root -czf control.tar.gz control) |
---|
68 | |
---|
69 | # Format deb package |
---|
70 | echo 2.0 > ${tmp_folder}/debian-binary |
---|
71 | |
---|
72 | # Create package (control before data) |
---|
73 | ar -r ${PKG_NAME}_${CODE_VERSION}-${PKG_VERSION}_all.deb ${tmp_folder}/debian-binary ${tmp_folder}/control.tar.gz ${tmp_folder}/data.tar.gz |
---|
74 | |
---|
75 | # Clean |
---|
76 | rm -rf ${tmp_folder} |
---|
77 | |
---|
78 | # Prepare reprepro upload |
---|
79 | echo "# Prepare reprepro upload" |
---|
80 | echo "( cd /srv/www/debian/ ; reprepro includedeb wheezy ~/wheezy/${PKG_NAME}_${CODE_VERSION}-${PKG_VERSION}_all.deb )" |
---|
81 | echo "( cd /srv/www/debian/ ; reprepro includedeb jessie ~/jessie/${PKG_NAME}_${CODE_VERSION}-${PKG_VERSION}_all.deb )" |
---|
82 | echo "( cd /srv/www/debian/ ; reprepro includedeb stretch ~/stretch/${PKG_NAME}_${CODE_VERSION}-${PKG_VERSION}_all.deb )" |
---|
83 | echo "( cd /srv/www/debian/ ; reprepro dumpreferences ) | grep -i ddt" |
---|