remove more obsolete manpages
Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
		
					parent
					
						
							
								063fc61291
							
						
					
				
			
			
				commit
				
					
						afa3920ca9
					
				
			
		
					 3 changed files with 0 additions and 144 deletions
				
			
		| 
						 | 
					@ -1,48 +0,0 @@
 | 
				
			||||||
cdist-config(1)
 | 
					 | 
				
			||||||
===============
 | 
					 | 
				
			||||||
Nico Schottelius <nico-cdist--@--schottelius.org>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
NAME
 | 
					 | 
				
			||||||
----
 | 
					 | 
				
			||||||
cdist-config - Read basic cdist configuration
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
DESCRIPTION
 | 
					 | 
				
			||||||
-----------
 | 
					 | 
				
			||||||
Cdist-config is sourced by cdist programs and provides hints on where to find
 | 
					 | 
				
			||||||
types, manifests, etc. Generally speaking, it's just usable from within the
 | 
					 | 
				
			||||||
core and is only of interest for cdist-developers.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
ENVIRONMENT VARIABLES
 | 
					 | 
				
			||||||
---------------------
 | 
					 | 
				
			||||||
The following list contains environment variables that are known
 | 
					 | 
				
			||||||
to be changed by users in various situations. To change the variable,
 | 
					 | 
				
			||||||
use your current shell and export it, so all cdist-binaries know about it.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
__cdist_tmp_base_dir::
 | 
					 | 
				
			||||||
   Normally this points to /tmp. In case /tmp is not suitable for
 | 
					 | 
				
			||||||
   cdist (i.e. has noexec flag setup) you can change this variable
 | 
					 | 
				
			||||||
   to point to a better location.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
EXAMPLES
 | 
					 | 
				
			||||||
--------
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
If /tmp has the noexec flag, you can use $HOME/.tmp for instance:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
--------------------------------------------------------------------------------
 | 
					 | 
				
			||||||
export __cdist_tmp_base_dir=$HOME/.tmp
 | 
					 | 
				
			||||||
--------------------------------------------------------------------------------
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
SEE ALSO
 | 
					 | 
				
			||||||
--------
 | 
					 | 
				
			||||||
cdist(7)
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
COPYING
 | 
					 | 
				
			||||||
-------
 | 
					 | 
				
			||||||
Copyright \(C) 2010-2011 Nico Schottelius. Free use of this software is
 | 
					 | 
				
			||||||
granted under the terms of the GNU General Public License version 3 (GPLv3).
 | 
					 | 
				
			||||||
| 
						 | 
					@ -1,49 +0,0 @@
 | 
				
			||||||
cdist-env(1)
 | 
					 | 
				
			||||||
============
 | 
					 | 
				
			||||||
Nico Schottelius <nico-cdist--@--schottelius.org>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
NAME
 | 
					 | 
				
			||||||
----
 | 
					 | 
				
			||||||
cdist-env - Setup environment for using cdist
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
SYNOPSIS
 | 
					 | 
				
			||||||
--------
 | 
					 | 
				
			||||||
cdist-env
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
DESCRIPTION
 | 
					 | 
				
			||||||
-----------
 | 
					 | 
				
			||||||
cdist-env outputs two strings suitable for usage in your current shell,
 | 
					 | 
				
			||||||
so you can use cdist from the checkout. cdist-env essentially helps you
 | 
					 | 
				
			||||||
to easily setup PATH and MANPATH.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
If you've multiple checkouts of cdist and run cdist-env from the various
 | 
					 | 
				
			||||||
checkouts, a new run will prepend the last directory, thus ensures you
 | 
					 | 
				
			||||||
can run it multiple times and does what one expects.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
EXAMPLES
 | 
					 | 
				
			||||||
--------
 | 
					 | 
				
			||||||
For use in bourne shell variants (like dash, bash, ksh) as well as
 | 
					 | 
				
			||||||
in csh variants (csh, tcsh):
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
--------------------------------------------------------------------------------
 | 
					 | 
				
			||||||
eval `./bin/cdist-env`
 | 
					 | 
				
			||||||
--------------------------------------------------------------------------------
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
For bourne shell, there is also a shorter version:
 | 
					 | 
				
			||||||
--------------------------------------------------------------------------------
 | 
					 | 
				
			||||||
. ./bin/cdist-env
 | 
					 | 
				
			||||||
--------------------------------------------------------------------------------
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
SEE ALSO
 | 
					 | 
				
			||||||
--------
 | 
					 | 
				
			||||||
cdist(7)
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
COPYING
 | 
					 | 
				
			||||||
-------
 | 
					 | 
				
			||||||
Copyright \(C) 2011 Nico Schottelius. Free use of this software is
 | 
					 | 
				
			||||||
granted under the terms of the GNU General Public License version 3 (GPLv3).
 | 
					 | 
				
			||||||
| 
						 | 
					@ -1,47 +0,0 @@
 | 
				
			||||||
cdist-quickstart(1)
 | 
					 | 
				
			||||||
===================
 | 
					 | 
				
			||||||
Nico Schottelius <nico-cdist--@--schottelius.org>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
NAME
 | 
					 | 
				
			||||||
----
 | 
					 | 
				
			||||||
cdist-quickstart - Make use of cinit in 5 minutes
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
SYNOPSIS
 | 
					 | 
				
			||||||
--------
 | 
					 | 
				
			||||||
cdist-quickstart
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
DESCRIPTION
 | 
					 | 
				
			||||||
-----------
 | 
					 | 
				
			||||||
cdist-quickstart is an interactive guide to cdist. It should be one
 | 
					 | 
				
			||||||
of the first tools you use when you begin with cdist.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
EXAMPLES
 | 
					 | 
				
			||||||
--------
 | 
					 | 
				
			||||||
To use cdist-quickstart, add the bin directory to your PATH, execute
 | 
					 | 
				
			||||||
cdist-quickstart and enjoy cdist:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
--------------------------------------------------------------------------------
 | 
					 | 
				
			||||||
# Bourne shell example
 | 
					 | 
				
			||||||
export PATH=$(pwd -P)/bin:$PATH
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# Alternatively, usable for csh and bsh, set's up PATH and MANPATH
 | 
					 | 
				
			||||||
eval `./bin/cdist-env`
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# Let's go!
 | 
					 | 
				
			||||||
cdist-quickstart
 | 
					 | 
				
			||||||
--------------------------------------------------------------------------------
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
SEE ALSO
 | 
					 | 
				
			||||||
--------
 | 
					 | 
				
			||||||
- cdist(7)
 | 
					 | 
				
			||||||
- cdist-env(1)
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
COPYING
 | 
					 | 
				
			||||||
-------
 | 
					 | 
				
			||||||
Copyright \(C) 2010-2011 Nico Schottelius. Free use of this software is
 | 
					 | 
				
			||||||
granted under the terms of the GNU General Public License version 3 (GPLv3).
 | 
					 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue