aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2017-05-29 06:34:41 -0400
committerB Stack <bgstack15@gmail.com>2017-05-29 06:34:41 -0400
commita9b7fff4f3f88d6f1cb7e980e5f83d9956dcc010 (patch)
treeb87644a4cc72bbbb87b5fd98d9e1147ee9d644a6 /README.md
parentstarting to add dhcpd-control (diff)
downloadddtools-a9b7fff4f3f88d6f1cb7e980e5f83d9956dcc010.tar.gz
ddtools-a9b7fff4f3f88d6f1cb7e980e5f83d9956dcc010.tar.bz2
ddtools-a9b7fff4f3f88d6f1cb7e980e5f83d9956dcc010.zip
renamed package to ddtools
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 7 insertions, 5 deletions
diff --git a/README.md b/README.md
index 47f8aa7..ec3d5c9 100644
--- a/README.md
+++ b/README.md
@@ -1,13 +1,15 @@
### Overview
-updatezone is a tool that helps you easily adjust dns zone files. It handles incrementing the serial number and pushing updates to slave dns servers. For the complete documentation of the package itself, view usr/share/updatezone/docs/README.txt.
+ddtools is a collection of tools for manging dns and dhcpd. For the complete documentation of the package itself, view usr/share/ddtools/docs/README.txt.
+updatezone helps you easily adjust dns zone files. It handles incrementing the serial number and pushing updates to slave dns servers.
+dhcpd-control helps manage paired dhcpd servers.
### Building
The recommended way to build an rpm is:
pushd ~/rpmbuild; mkdir -p SOURCES RPMS SPECS BUILD BUILDROOT; popd
- mkdir -p ~/rpmbuild/SOURCES/updatezone-0.0-1
- cd ~/rpmbuild/SOURCES/updatezone-0.0-1
- git clone https://github.com/bgstack15/updatezone
- usr/share/updatezone/inc/pack rpm
+ mkdir -p ~/rpmbuild/SOURCES/ddtools-0.0-2
+ cd ~/rpmbuild/SOURCES/ddtools-0.0-2
+ git clone https://github.com/bgstack15/ddtools
+ usr/share/ddtools/inc/pack rpm
The generated rpm will be in ~/rpmbuild/RPMS/noarch
bgstack15