summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.pod48
-rw-r--r--README.txt53
2 files changed, 53 insertions, 48 deletions
diff --git a/README.pod b/README.pod
deleted file mode 100644
index 7124d5c..0000000
--- a/README.pod
+++ /dev/null
@@ -1,48 +0,0 @@
-=head1 NAME
-
-netdiff - A simple script to diff a file or a directory of two hosts over the network.
-
-This is very helpful if you want to find out any difference of these two hosts.
-
-=head2 SYNOPSYS
-
- netdiff HOSTNAME PATH [PORT] [ADDITIONAL DIFF OPTS]
-
-=head2 USAGE
-
-Cluster-SSH into two hosts at the same time and run on both hosts the same
-(simultaneous) command:
-
- netdiff HOSTNAME PATH
-
-Where HOSTNAME can be the hostname of the first or the second host. Depending on this the script will decide to be in the client or the server role.
-
-And where PATH musst be a full qualified path to a file or a directory.
-
-Netdiff transfers everything in PATH (recursively and encrypted via OpenSSL/AES) to the other host and computes a diff of it. The latter with the diff tool.
-
-If no port is specified the default port will be used which is defined in
-
- /etc/default/netdiff
-
-=head2 EXAMPLE
-
-A common use case is to find out the differences of the PAM configuration. On most systems the PAM configuration is spread into several small configuration files which are hard to compare by hand between two hosts.
-
-Given two hosts one.example.com and two.example.com. Just run this command on both hosts simultaneously:
-
- netdiff one.example.com /etc/pam.d
-
-The same affect, but the other way around, would be the following command:
-
- netdiff two.example.com /etc/pam.d
-
-=head1 LICENSE
-
-See package description or project website.
-
-=head1 AUTHOR
-
-Paul Buetow - <http://netdiff.buetow.org>
-
-=cut
diff --git a/README.txt b/README.txt
new file mode 100644
index 0000000..1b8a403
--- /dev/null
+++ b/README.txt
@@ -0,0 +1,53 @@
+NAME
+ netdiff - A simple script to diff a file or a directory of two hosts
+ over the network.
+
+ This is very helpful if you want to find out any difference of these two
+ hosts.
+
+ SYNOPSYS
+ netdiff HOSTNAME PATH [PORT] [ADDITIONAL DIFF OPTS]
+
+ USAGE
+ Cluster-SSH into two hosts at the same time and run on both hosts the
+ same (simultaneous) command:
+
+ netdiff HOSTNAME PATH
+
+ Where HOSTNAME can be the hostname of the first or the second host.
+ Depending on this the script will decide to be in the client or the
+ server role.
+
+ And where PATH musst be a full qualified path to a file or a directory.
+
+ Netdiff transfers everything in PATH (recursively and encrypted via
+ OpenSSL/AES) to the other host and computes a diff of it. The latter
+ with the diff tool.
+
+ If no port is specified the default port will be used which is defined
+ in
+
+ /etc/default/netdiff
+
+ EXAMPLE
+ A common use case is to find out the differences of the PAM
+ configuration. On most systems the PAM configuration is spread into
+ several small configuration files which are hard to compare by hand
+ between two hosts.
+
+ Given two hosts one.example.com and two.example.com. Just run this
+ command on both hosts simultaneously:
+
+ netdiff one.example.com /etc/pam.d
+
+ The same affect, but the other way around, would be the following
+ command:
+
+ netdiff two.example.com /etc/pam.d
+
+LICENSE
+ See package description or project website.
+
+AUTHOR
+ Paul Buetow - <http://netdiff.buetow.org>
+