Преглед изворни кода

update some code formatting on readme

Bryan Heden пре 8 година
родитељ
комит
d62b2455fa
1 измењених фајлова са 9 додато и 9 уклоњено
  1. 9 9
      README

+ 9 - 9
README

@@ -43,7 +43,7 @@ Installation Instructions
 1.  If you are using the Git tree, you will need m4, gettext, automake, and
 1.  If you are using the Git tree, you will need m4, gettext, automake, and
     autoconf.  To start out, run:
     autoconf.  To start out, run:
 
 
-    	./tools/setup
+        ./tools/setup
 
 
     For more detail, see the developer guidelines at
     For more detail, see the developer guidelines at
     <https://www.nagios-plugins.org/doc/guidelines.html>.
     <https://www.nagios-plugins.org/doc/guidelines.html>.
@@ -51,7 +51,7 @@ Installation Instructions
 2.  Run the configure script to initialize variables and create a Makefile,
 2.  Run the configure script to initialize variables and create a Makefile,
     etc.
     etc.
 
 
-    	./configure --prefix=BASEDIRECTORY --with-cgiurl=SOMEURL
+        ./configure --prefix=BASEDIRECTORY --with-cgiurl=SOMEURL
 
 
     Replace `BASEDIRECTORY` with the path of the directory under which Nagios
     Replace `BASEDIRECTORY` with the path of the directory under which Nagios
     is installed (default is `/usr/local/nagios`), and replace `SOMEURL` with
     is installed (default is `/usr/local/nagios`), and replace `SOMEURL` with
@@ -60,12 +60,12 @@ Installation Instructions
 
 
 3.  Compile the plugins with the following command:
 3.  Compile the plugins with the following command:
 
 
-    	make
+        make
 
 
 4.  Install the compiled plugins and plugin scripts with the following
 4.  Install the compiled plugins and plugin scripts with the following
     command:
     command:
 
 
-    	make install
+        make install
 
 
     The installation procedure will attempt to place the plugins in a
     The installation procedure will attempt to place the plugins in a
     `libexec/` subdirectory in the base directory you specified with the
     `libexec/` subdirectory in the base directory you specified with the
@@ -75,7 +75,7 @@ Installation Instructions
     a non-root user, they will not be installed.  To install, switch to root
     a non-root user, they will not be installed.  To install, switch to root
     and run:
     and run:
 
 
-    	make install-root
+        make install-root
 
 
 That's it!  If you have any problems or questions, feel free to send an
 That's it!  If you have any problems or questions, feel free to send an
 email to <help@nagios-plugins.org>.
 email to <help@nagios-plugins.org>.
@@ -87,15 +87,15 @@ Testing With libtap
 1.  The nagios-plugins source includes a perl testing suite.  the libtap 
 1.  The nagios-plugins source includes a perl testing suite.  the libtap 
     library and headers are included with the source.  Configure with:
     library and headers are included with the source.  Configure with:
 
 
-	./configure --enable-libtap
+        ./configure --enable-libtap
 
 
     Note: "--enable-extra-opts" used to be required as well, but is no 
     Note: "--enable-extra-opts" used to be required as well, but is no 
     longer required as it is a default configure option.
     longer required as it is a default configure option.
 
 
 2.  Make and then make test:
 2.  Make and then make test:
 
 
-	make
-	make test
+        make
+        make test
 
 
 3.  Testing is pseudo intelligent and will try to autodetect which plugins
 3.  Testing is pseudo intelligent and will try to autodetect which plugins
     to test.  You may need to look at the REQUIREMENTS doc as to what
     to test.  You may need to look at the REQUIREMENTS doc as to what
@@ -104,7 +104,7 @@ Testing With libtap
     Additionally, default and user supplied (at runtime) testing parameters
     Additionally, default and user supplied (at runtime) testing parameters
     are saved in the file:
     are saved in the file:
 
 
-	/var/tmp/NPTest.cache
+        /var/tmp/NPTest.cache
 
 
     If you need to change any testing parameters, edit them in this file
     If you need to change any testing parameters, edit them in this file
     or just remove the line to force the test to re-prompt you for input.
     or just remove the line to force the test to re-prompt you for input.