aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2017-05-27 17:52:17 -0400
committerB Stack <bgstack15@gmail.com>2017-05-27 17:52:17 -0400
commit54354b7c3f895bd716a8d3c48b950688f27d330b (patch)
treef68a8f8fedddeef905918b30ac0499d4e17a5f25
parentadded readme content (diff)
downloadddtools-54354b7c3f895bd716a8d3c48b950688f27d330b.tar.gz
ddtools-54354b7c3f895bd716a8d3c48b950688f27d330b.tar.bz2
ddtools-54354b7c3f895bd716a8d3c48b950688f27d330b.zip
added project readme
-rw-r--r--README.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..47f8aa7
--- /dev/null
+++ b/README.md
@@ -0,0 +1,13 @@
+### 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.
+
+### 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
+
+The generated rpm will be in ~/rpmbuild/RPMS/noarch
bgstack15