aboutsummaryrefslogtreecommitdiff
path: root/usr/share/updatezone/docs
diff options
context:
space:
mode:
Diffstat (limited to 'usr/share/updatezone/docs')
-rw-r--r--usr/share/updatezone/docs/README.txt46
-rw-r--r--usr/share/updatezone/docs/files-for-versioning.txt3
-rw-r--r--usr/share/updatezone/docs/packaging.txt1
-rw-r--r--usr/share/updatezone/docs/updatezone.spec57
4 files changed, 0 insertions, 107 deletions
diff --git a/usr/share/updatezone/docs/README.txt b/usr/share/updatezone/docs/README.txt
deleted file mode 100644
index 76bb4b4..0000000
--- a/usr/share/updatezone/docs/README.txt
+++ /dev/null
@@ -1,46 +0,0 @@
-File: usr/share/updatezone/docs/README.txt
-Package: updatezone
-Author: bgstack15
-Startdate: 2017-05-26
-Title: Readme file for updatezone
-Purpose: All packages should come with a readme
-Usage: Read it.
-Reference: README.txt
-Improve:
-Document: Below this line
-
-### WELCOME
-Updatezone provides an easy way to update dns zone files. Intended primarily for bind9 zone files, experimentation is encouraged.
-Instead of running the series of commands manually: rndc freeze, vi zonefile, rndc thaw and so on, use updatezone.
-
-### CONFIGURATION
-The conf files belong in /etc/updatezone/. See example in /usr/share/updatezone/examples/.
-
-### USING THIS TOOL
-
-$ updatezone ipa.smith122.com
-Where this file exists: /etc/updatezone/ipa.smith122.com.conf
-
- UZ_ZONE_NAME=ipa.smith122.com
- UZ_FORWARD_ZONE=ipa.smith122.com
- UZ_FORWARD_FILE=/var/named/data/db.ipa.smith122.com
- UZ_REVERSE_ZONE=1.168.192.in-addr.arpa
- UZ_REVERSE_FILE=/var/named/data/db.192.168.1
- UZ_SLAVE_COUNT=1
- UZ_SLAVE_1=dns2
-
-The updatezone tool searches for the value of UZ_ZONE_NAME to declare a match and use that configuration file.
-The zone definitions are used in the freeze/thaw/retransfer commands.
-
-This tool will only request updates for zones that are updated. Also, you do not need to adjust the serial number at all. The script will detect changes and then increment the serial number for you.
-
-You can also specify multiple zones on the command line.
-$ updatezone ipa.smith122.com ad.smith122.com
-
-### NOTES
-
-### REFERENCE
-
-### CHANGELOG
-2017-05-27 B Stack <bgstack15@gmail.com> 0.0-1
-- Initial package construction
diff --git a/usr/share/updatezone/docs/files-for-versioning.txt b/usr/share/updatezone/docs/files-for-versioning.txt
deleted file mode 100644
index c08c65a..0000000
--- a/usr/share/updatezone/docs/files-for-versioning.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-docs/README.txt
-docs/updatezone.spec
-docs/debian-updatezone/control
diff --git a/usr/share/updatezone/docs/packaging.txt b/usr/share/updatezone/docs/packaging.txt
deleted file mode 100644
index beb1ccb..0000000
--- a/usr/share/updatezone/docs/packaging.txt
+++ /dev/null
@@ -1 +0,0 @@
-delete this file please.
diff --git a/usr/share/updatezone/docs/updatezone.spec b/usr/share/updatezone/docs/updatezone.spec
deleted file mode 100644
index d08942e..0000000
--- a/usr/share/updatezone/docs/updatezone.spec
+++ /dev/null
@@ -1,57 +0,0 @@
-# ref: http://www.rpm.org/max-rpm/s1-rpm-build-creating-spec-file.html
-Summary: update dns zone files easily
-Name: updatezone
-Version: 0.0
-Release: 2
-License: CC BY-SA 4.0
-Group: Applications/System
-Source: updatezone.tgz
-URL: https://bgstack15.wordpress.com/
-#Distribution:
-#Vendor:
-Packager: B Stack <bgstack15@gmail.com>
-Requires: bgscripts-core >= 1.2-11
-Buildarch: noarch
-
-%description
-updatezone provides updatezone.sh which takes a simple config file for selecting the dns zone files to edit. Bind is the only supported dns server right now, but experimentation is encouraged.
-
-#%global _python_bytecompile_errors_terminate_build 0
-
-%prep
-%setup
-
-%build
-
-%install
-rm -rf %{buildroot}
-rsync -a . %{buildroot}/ --exclude='**/.*.swp' --exclude='**/.git'
-
-%post
-exit 0
-
-%preun
-exit 0
-
-%postun
-exit 0
-
-%files
-%dir /etc/updatezone
-%dir /usr/share/updatezone
-%dir /usr/share/updatezone/inc
-%dir /usr/share/updatezone/examples
-%dir /usr/share/updatezone/docs
-/usr/share/updatezone/inc/pack
-/usr/share/updatezone/inc/get-files
-%config %attr(666, -, -) /usr/share/updatezone/examples/ipa.smith122.com.conf.example
-%doc %attr(444, -, -) /usr/share/updatezone/docs/files-for-versioning.txt
-%doc %attr(444, -, -) /usr/share/updatezone/docs/packaging.txt
-%doc %attr(444, -, -) /usr/share/updatezone/docs/README.txt
-/usr/share/updatezone/docs/updatezone.spec
-/usr/share/updatezone/updatezone.sh
-%verify(link) /usr/bin/updatezone
-
-%changelog
-* Sat May 27 2017 B Stack <bgstack15@gmail.com> 0.0-1
-- Initial rpm release
bgstack15