Merge branch 'master' of https://github.com/telmich/cdist into feature__cdist_autodep_try2
Conflicts: docs/man/man7/cdist-manifest.text
This commit is contained in:
		
				commit
				
					
						2b5929c881
					
				
			
		
					 91 changed files with 1305 additions and 233 deletions
				
			
		
							
								
								
									
										1
									
								
								.gitignore
									
										
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								.gitignore
									
										
									
									
										vendored
									
									
								
							| 
						 | 
					@ -30,3 +30,4 @@ build
 | 
				
			||||||
.lock-*
 | 
					.lock-*
 | 
				
			||||||
.git-current-branch
 | 
					.git-current-branch
 | 
				
			||||||
.lock*
 | 
					.lock*
 | 
				
			||||||
 | 
					.pypi-release
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
							
								
								
									
										4
									
								
								Makefile
									
										
									
									
									
								
							
							
						
						
									
										4
									
								
								Makefile
									
										
									
									
									
								
							| 
						 | 
					@ -175,10 +175,12 @@ freecode-release: $(FREECODE_FILE)
 | 
				
			||||||
################################################################################
 | 
					################################################################################
 | 
				
			||||||
# pypi
 | 
					# pypi
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
pypi-release: man $(PYTHON_VERSION)
 | 
					PYPI_FILE=.pypi-release
 | 
				
			||||||
 | 
					$(PYPI_FILE): man $(PYTHON_VERSION)
 | 
				
			||||||
	python3 setup.py sdist upload
 | 
						python3 setup.py sdist upload
 | 
				
			||||||
	touch $@
 | 
						touch $@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					pypi-release: $(PYPI_FILE)
 | 
				
			||||||
################################################################################
 | 
					################################################################################
 | 
				
			||||||
# archlinux
 | 
					# archlinux
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -205,11 +205,21 @@ eof
 | 
				
			||||||
        fi
 | 
					        fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        # Ensure we are on the master branch
 | 
					        # Ensure we are on the master branch
 | 
				
			||||||
 | 
					        masterbranch=yes
 | 
				
			||||||
        if [ "$(git rev-parse --abbrev-ref HEAD)" != "master" ]; then
 | 
					        if [ "$(git rev-parse --abbrev-ref HEAD)" != "master" ]; then
 | 
				
			||||||
            echo "Releases are happening from the master branch, aborting"
 | 
					            echo "Releases are happening from the master branch, aborting"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            echo "Enter the magic word to release anyway"
 | 
				
			||||||
 | 
					            read magicword
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            if [ "$magicword" = "iknowwhatido" ]; then
 | 
				
			||||||
 | 
					                masterbranch=no
 | 
				
			||||||
 | 
					            else
 | 
				
			||||||
                exit 1
 | 
					                exit 1
 | 
				
			||||||
            fi
 | 
					            fi
 | 
				
			||||||
 | 
					        fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        if [ "$masterbranch" = yes ]; then
 | 
				
			||||||
            # Ensure version branch exists
 | 
					            # Ensure version branch exists
 | 
				
			||||||
            if ! git rev-parse --verify refs/heads/$target_branch 2>/dev/null; then
 | 
					            if ! git rev-parse --verify refs/heads/$target_branch 2>/dev/null; then
 | 
				
			||||||
                git branch "$target_branch"
 | 
					                git branch "$target_branch"
 | 
				
			||||||
| 
						 | 
					@ -218,6 +228,7 @@ eof
 | 
				
			||||||
            # Merge master branch into version branch
 | 
					            # Merge master branch into version branch
 | 
				
			||||||
            git checkout "$target_branch"
 | 
					            git checkout "$target_branch"
 | 
				
			||||||
            git merge master
 | 
					            git merge master
 | 
				
			||||||
 | 
					        fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        # Verify that after the merge everything works
 | 
					        # Verify that after the merge everything works
 | 
				
			||||||
        "$0" check-date
 | 
					        "$0" check-date
 | 
				
			||||||
| 
						 | 
					@ -236,8 +247,10 @@ eof
 | 
				
			||||||
        "$0" release-git-tag
 | 
					        "$0" release-git-tag
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        # Also merge back the version branch
 | 
					        # Also merge back the version branch
 | 
				
			||||||
 | 
					        if [ "$masterbranch" = yes ]; then
 | 
				
			||||||
            git checkout master
 | 
					            git checkout master
 | 
				
			||||||
            git merge "$target_branch"
 | 
					            git merge "$target_branch"
 | 
				
			||||||
 | 
					        fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        # Publish git changes
 | 
					        # Publish git changes
 | 
				
			||||||
        make pub
 | 
					        make pub
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,6 +1,6 @@
 | 
				
			||||||
#!/bin/sh
 | 
					#!/bin/sh
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
# 2010-2011 Nico Schottelius (nico-cdist at schottelius.org)
 | 
					# 2010-2014 Nico Schottelius (nico-cdist at schottelius.org)
 | 
				
			||||||
# 2012 Steven Armstrong (steven-cdist at armstrong.cc)
 | 
					# 2012 Steven Armstrong (steven-cdist at armstrong.cc)
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
# This file is part of cdist.
 | 
					# This file is part of cdist.
 | 
				
			||||||
| 
						 | 
					@ -20,6 +20,6 @@
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
 | 
					
 | 
				
			||||||
if command -v hostname >/dev/null; then
 | 
					if command -v uname >/dev/null; then
 | 
				
			||||||
   hostname -f
 | 
					   uname -n
 | 
				
			||||||
fi
 | 
					fi
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
							
								
								
									
										32
									
								
								cdist/conf/type/__apt_key/explorer/state
									
										
									
									
									
										Executable file
									
								
							
							
						
						
									
										32
									
								
								cdist/conf/type/__apt_key/explorer/state
									
										
									
									
									
										Executable file
									
								
							| 
						 | 
					@ -0,0 +1,32 @@
 | 
				
			||||||
 | 
					#!/bin/sh
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# 2011-2014 Steven Armstrong (steven-cdist at armstrong.cc)
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# This file is part of cdist.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# cdist is free software: you can redistribute it and/or modify
 | 
				
			||||||
 | 
					# it under the terms of the GNU General Public License as published by
 | 
				
			||||||
 | 
					# the Free Software Foundation, either version 3 of the License, or
 | 
				
			||||||
 | 
					# (at your option) any later version.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# cdist is distributed in the hope that it will be useful,
 | 
				
			||||||
 | 
					# but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 | 
					# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
				
			||||||
 | 
					# GNU General Public License for more details.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# You should have received a copy of the GNU General Public License
 | 
				
			||||||
 | 
					# along with cdist. If not, see <http://www.gnu.org/licenses/>.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# Get the current state of the apt key.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					if [ -f "$__object/parameter/keyid" ]; then
 | 
				
			||||||
 | 
					   keyid="$(cat "$__object/parameter/keyid")"
 | 
				
			||||||
 | 
					else
 | 
				
			||||||
 | 
					   keyid="$__object_id"
 | 
				
			||||||
 | 
					fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					apt-key export "$keyid" | head -n 1 | grep -Fqe "BEGIN PGP PUBLIC KEY BLOCK" \
 | 
				
			||||||
 | 
					   && echo present \
 | 
				
			||||||
 | 
					   || echo absent
 | 
				
			||||||
							
								
								
									
										42
									
								
								cdist/conf/type/__apt_key/gencode-remote
									
										
									
									
									
										Executable file
									
								
							
							
						
						
									
										42
									
								
								cdist/conf/type/__apt_key/gencode-remote
									
										
									
									
									
										Executable file
									
								
							| 
						 | 
					@ -0,0 +1,42 @@
 | 
				
			||||||
 | 
					#!/bin/sh
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# 2011-2014 Steven Armstrong (steven-cdist at armstrong.cc)
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# This file is part of cdist.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# cdist is free software: you can redistribute it and/or modify
 | 
				
			||||||
 | 
					# it under the terms of the GNU General Public License as published by
 | 
				
			||||||
 | 
					# the Free Software Foundation, either version 3 of the License, or
 | 
				
			||||||
 | 
					# (at your option) any later version.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# cdist is distributed in the hope that it will be useful,
 | 
				
			||||||
 | 
					# but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 | 
					# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
				
			||||||
 | 
					# GNU General Public License for more details.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# You should have received a copy of the GNU General Public License
 | 
				
			||||||
 | 
					# along with cdist. If not, see <http://www.gnu.org/licenses/>.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					if [ -f "$__object/parameter/keyid" ]; then
 | 
				
			||||||
 | 
					   keyid="$(cat "$__object/parameter/keyid")"
 | 
				
			||||||
 | 
					else
 | 
				
			||||||
 | 
					   keyid="$__object_id"
 | 
				
			||||||
 | 
					fi
 | 
				
			||||||
 | 
					state_should="$(cat "$__object/parameter/state")"
 | 
				
			||||||
 | 
					state_is="$(cat "$__object/explorer/state")"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					if [ "$state_should" = "$state_is" ]; then
 | 
				
			||||||
 | 
					   # nothing to do
 | 
				
			||||||
 | 
					   exit 0
 | 
				
			||||||
 | 
					fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					case "$state_should" in
 | 
				
			||||||
 | 
					   present)
 | 
				
			||||||
 | 
					      keyserver="$(cat "$__object/parameter/keyserver")"
 | 
				
			||||||
 | 
					      echo "apt-key adv --keyserver \"$keyserver\" --recv-keys \"$keyid\""
 | 
				
			||||||
 | 
					   ;;
 | 
				
			||||||
 | 
					   absent)
 | 
				
			||||||
 | 
					      echo "apt-key del \"$keyid\""
 | 
				
			||||||
 | 
					   ;;
 | 
				
			||||||
 | 
					esac
 | 
				
			||||||
							
								
								
									
										61
									
								
								cdist/conf/type/__apt_key/man.text
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										61
									
								
								cdist/conf/type/__apt_key/man.text
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1,61 @@
 | 
				
			||||||
 | 
					cdist-type__apt_key(7)
 | 
				
			||||||
 | 
					======================
 | 
				
			||||||
 | 
					Steven Armstrong <steven-cdist--@--armstrong.cc>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					NAME
 | 
				
			||||||
 | 
					----
 | 
				
			||||||
 | 
					cdist-type__apt_key - manage the list of keys used by apt
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					DESCRIPTION
 | 
				
			||||||
 | 
					-----------
 | 
				
			||||||
 | 
					Manages the list of keys used by apt to authenticate packages.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					REQUIRED PARAMETERS
 | 
				
			||||||
 | 
					-------------------
 | 
				
			||||||
 | 
					None.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					OPTIONAL PARAMETERS
 | 
				
			||||||
 | 
					-------------------
 | 
				
			||||||
 | 
					state::
 | 
				
			||||||
 | 
					   'present' or 'absent'. Defaults to 'present'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					keyid::
 | 
				
			||||||
 | 
					   the id of the key to add. Defaults to __object_id
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					keyserver::
 | 
				
			||||||
 | 
					   the keyserver from which to fetch the key. If omitted the default set in
 | 
				
			||||||
 | 
					   ./parameter/default/keyserver is used.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					EXAMPLES
 | 
				
			||||||
 | 
					--------
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					--------------------------------------------------------------------------------
 | 
				
			||||||
 | 
					# Add Ubuntu Archive Automatic Signing Key
 | 
				
			||||||
 | 
					__apt_key 437D05B5
 | 
				
			||||||
 | 
					# Same thing
 | 
				
			||||||
 | 
					__apt_key 437D05B5 --state present
 | 
				
			||||||
 | 
					# Get rid of it
 | 
				
			||||||
 | 
					__apt_key 437D05B5 --state absent
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# same thing with human readable name and explicit keyid
 | 
				
			||||||
 | 
					__apt_key UbuntuArchiveKey --keyid 437D05B5
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# same thing with other keyserver
 | 
				
			||||||
 | 
					__apt_key UbuntuArchiveKey --keyid 437D05B5 --keyserver keyserver.ubuntu.com
 | 
				
			||||||
 | 
					--------------------------------------------------------------------------------
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					SEE ALSO
 | 
				
			||||||
 | 
					--------
 | 
				
			||||||
 | 
					- cdist-type(7)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					COPYING
 | 
				
			||||||
 | 
					-------
 | 
				
			||||||
 | 
					Copyright \(C) 2011-2014 Steven Armstrong. Free use of this software is
 | 
				
			||||||
 | 
					granted under the terms of the GNU General Public License version 3 (GPLv3).
 | 
				
			||||||
							
								
								
									
										1
									
								
								cdist/conf/type/__apt_key/parameter/default/keyserver
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								cdist/conf/type/__apt_key/parameter/default/keyserver
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1 @@
 | 
				
			||||||
 | 
					subkeys.pgp.net
 | 
				
			||||||
							
								
								
									
										1
									
								
								cdist/conf/type/__apt_key/parameter/default/state
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								cdist/conf/type/__apt_key/parameter/default/state
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1 @@
 | 
				
			||||||
 | 
					present
 | 
				
			||||||
							
								
								
									
										3
									
								
								cdist/conf/type/__apt_key/parameter/optional
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								cdist/conf/type/__apt_key/parameter/optional
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1,3 @@
 | 
				
			||||||
 | 
					state
 | 
				
			||||||
 | 
					keyid
 | 
				
			||||||
 | 
					keyserver
 | 
				
			||||||
							
								
								
									
										32
									
								
								cdist/conf/type/__apt_key_uri/explorer/state
									
										
									
									
									
										Executable file
									
								
							
							
						
						
									
										32
									
								
								cdist/conf/type/__apt_key_uri/explorer/state
									
										
									
									
									
										Executable file
									
								
							| 
						 | 
					@ -0,0 +1,32 @@
 | 
				
			||||||
 | 
					#!/bin/sh
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# 2011-2014 Steven Armstrong (steven-cdist at armstrong.cc)
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# This file is part of cdist.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# cdist is free software: you can redistribute it and/or modify
 | 
				
			||||||
 | 
					# it under the terms of the GNU General Public License as published by
 | 
				
			||||||
 | 
					# the Free Software Foundation, either version 3 of the License, or
 | 
				
			||||||
 | 
					# (at your option) any later version.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# cdist is distributed in the hope that it will be useful,
 | 
				
			||||||
 | 
					# but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 | 
					# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
				
			||||||
 | 
					# GNU General Public License for more details.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# You should have received a copy of the GNU General Public License
 | 
				
			||||||
 | 
					# along with cdist. If not, see <http://www.gnu.org/licenses/>.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# Get the current state of the apt key.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					if [ -f "$__object/parameter/name" ]; then
 | 
				
			||||||
 | 
					   name="$(cat "$__object/parameter/name")"
 | 
				
			||||||
 | 
					else
 | 
				
			||||||
 | 
					   name="$__object_id"
 | 
				
			||||||
 | 
					fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					apt-key list | grep -Fqe "$name" \
 | 
				
			||||||
 | 
					   && echo present \
 | 
				
			||||||
 | 
					   || echo absent
 | 
				
			||||||
							
								
								
									
										45
									
								
								cdist/conf/type/__apt_key_uri/gencode-remote
									
										
									
									
									
										Executable file
									
								
							
							
						
						
									
										45
									
								
								cdist/conf/type/__apt_key_uri/gencode-remote
									
										
									
									
									
										Executable file
									
								
							| 
						 | 
					@ -0,0 +1,45 @@
 | 
				
			||||||
 | 
					#!/bin/sh
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# 2011-2014 Steven Armstrong (steven-cdist at armstrong.cc)
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# This file is part of cdist.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# cdist is free software: you can redistribute it and/or modify
 | 
				
			||||||
 | 
					# it under the terms of the GNU General Public License as published by
 | 
				
			||||||
 | 
					# the Free Software Foundation, either version 3 of the License, or
 | 
				
			||||||
 | 
					# (at your option) any later version.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# cdist is distributed in the hope that it will be useful,
 | 
				
			||||||
 | 
					# but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 | 
					# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
				
			||||||
 | 
					# GNU General Public License for more details.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# You should have received a copy of the GNU General Public License
 | 
				
			||||||
 | 
					# along with cdist. If not, see <http://www.gnu.org/licenses/>.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					if [ -f "$__object/parameter/name" ]; then
 | 
				
			||||||
 | 
					   name="$(cat "$__object/parameter/name")"
 | 
				
			||||||
 | 
					else
 | 
				
			||||||
 | 
					   name="$__object_id"
 | 
				
			||||||
 | 
					fi
 | 
				
			||||||
 | 
					state_should="$(cat "$__object/parameter/state")"
 | 
				
			||||||
 | 
					state_is="$(cat "$__object/explorer/state")"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					if [ "$state_should" = "$state_is" ]; then
 | 
				
			||||||
 | 
					   # nothing to do
 | 
				
			||||||
 | 
					   exit 0
 | 
				
			||||||
 | 
					fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					case "$state_should" in
 | 
				
			||||||
 | 
					   present)
 | 
				
			||||||
 | 
					      uri="$(cat "$__object/parameter/uri")"
 | 
				
			||||||
 | 
					      printf 'curl -s -L "%s" | apt-key add -\n' "$uri"
 | 
				
			||||||
 | 
					   ;;
 | 
				
			||||||
 | 
					   absent)
 | 
				
			||||||
 | 
					      cat << DONE
 | 
				
			||||||
 | 
					keyid=\$(apt-key list | grep -B1 "$name" | awk '/pub/ { print \$2 }' | cut -d'/' -f 2)
 | 
				
			||||||
 | 
					apt-key del \$keyid
 | 
				
			||||||
 | 
					DONE
 | 
				
			||||||
 | 
					   ;;
 | 
				
			||||||
 | 
					esac
 | 
				
			||||||
							
								
								
									
										51
									
								
								cdist/conf/type/__apt_key_uri/man.text
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										51
									
								
								cdist/conf/type/__apt_key_uri/man.text
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1,51 @@
 | 
				
			||||||
 | 
					cdist-type__apt_key_uri(7)
 | 
				
			||||||
 | 
					==========================
 | 
				
			||||||
 | 
					Steven Armstrong <steven-cdist--@--armstrong.cc>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					NAME
 | 
				
			||||||
 | 
					----
 | 
				
			||||||
 | 
					cdist-type__apt_key_uri - add apt key from uri
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					DESCRIPTION
 | 
				
			||||||
 | 
					-----------
 | 
				
			||||||
 | 
					Download a key from an uri and add it to the apt keyring.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					REQUIRED PARAMETERS
 | 
				
			||||||
 | 
					-------------------
 | 
				
			||||||
 | 
					uri::
 | 
				
			||||||
 | 
					   the uri from which to download the key
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					OPTIONAL PARAMETERS
 | 
				
			||||||
 | 
					-------------------
 | 
				
			||||||
 | 
					state::
 | 
				
			||||||
 | 
					   'present' or 'absent', defaults to 'present'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					name::
 | 
				
			||||||
 | 
					   a name for this key, used when testing if it is already installed.
 | 
				
			||||||
 | 
					   Defaults to __object_id
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					EXAMPLES
 | 
				
			||||||
 | 
					--------
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					--------------------------------------------------------------------------------
 | 
				
			||||||
 | 
					__apt_key_uri rabbitmq \
 | 
				
			||||||
 | 
					   --name 'RabbitMQ Release Signing Key <info@rabbitmq.com>' \
 | 
				
			||||||
 | 
					   --uri http://www.rabbitmq.com/rabbitmq-signing-key-public.asc \
 | 
				
			||||||
 | 
					   --state present
 | 
				
			||||||
 | 
					--------------------------------------------------------------------------------
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					SEE ALSO
 | 
				
			||||||
 | 
					--------
 | 
				
			||||||
 | 
					- cdist-type(7)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					COPYING
 | 
				
			||||||
 | 
					-------
 | 
				
			||||||
 | 
					Copyright \(C) 2011-2014 Steven Armstrong. Free use of this software is
 | 
				
			||||||
 | 
					granted under the terms of the GNU General Public License version 3 (GPLv3).
 | 
				
			||||||
							
								
								
									
										21
									
								
								cdist/conf/type/__apt_key_uri/manifest
									
										
									
									
									
										Executable file
									
								
							
							
						
						
									
										21
									
								
								cdist/conf/type/__apt_key_uri/manifest
									
										
									
									
									
										Executable file
									
								
							| 
						 | 
					@ -0,0 +1,21 @@
 | 
				
			||||||
 | 
					#!/bin/sh
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# 2013-2014 Steven Armstrong (steven-cdist at armstrong.cc)
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# This file is part of cdist.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# cdist is free software: you can redistribute it and/or modify
 | 
				
			||||||
 | 
					# it under the terms of the GNU General Public License as published by
 | 
				
			||||||
 | 
					# the Free Software Foundation, either version 3 of the License, or
 | 
				
			||||||
 | 
					# (at your option) any later version.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# cdist is distributed in the hope that it will be useful,
 | 
				
			||||||
 | 
					# but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 | 
					# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
				
			||||||
 | 
					# GNU General Public License for more details.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# You should have received a copy of the GNU General Public License
 | 
				
			||||||
 | 
					# along with cdist. If not, see <http://www.gnu.org/licenses/>.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					__package curl
 | 
				
			||||||
							
								
								
									
										1
									
								
								cdist/conf/type/__apt_key_uri/parameter/default/state
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								cdist/conf/type/__apt_key_uri/parameter/default/state
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1 @@
 | 
				
			||||||
 | 
					present
 | 
				
			||||||
							
								
								
									
										2
									
								
								cdist/conf/type/__apt_key_uri/parameter/optional
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										2
									
								
								cdist/conf/type/__apt_key_uri/parameter/optional
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1,2 @@
 | 
				
			||||||
 | 
					state
 | 
				
			||||||
 | 
					name
 | 
				
			||||||
							
								
								
									
										1
									
								
								cdist/conf/type/__apt_key_uri/parameter/required
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								cdist/conf/type/__apt_key_uri/parameter/required
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1 @@
 | 
				
			||||||
 | 
					uri
 | 
				
			||||||
							
								
								
									
										42
									
								
								cdist/conf/type/__apt_norecommends/man.text
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										42
									
								
								cdist/conf/type/__apt_norecommends/man.text
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1,42 @@
 | 
				
			||||||
 | 
					cdist-type__apt_norecommends(7)
 | 
				
			||||||
 | 
					===============================
 | 
				
			||||||
 | 
					Steven Armstrong <steven-cdist--@--armstrong.cc>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					NAME
 | 
				
			||||||
 | 
					----
 | 
				
			||||||
 | 
					cdist-type__apt_norecommends - configure apt to not install recommended packages
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					DESCRIPTION
 | 
				
			||||||
 | 
					-----------
 | 
				
			||||||
 | 
					Configure apt to not install any recommended or suggested packages.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					REQUIRED PARAMETERS
 | 
				
			||||||
 | 
					-------------------
 | 
				
			||||||
 | 
					None.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					OPTIONAL PARAMETERS
 | 
				
			||||||
 | 
					-------------------
 | 
				
			||||||
 | 
					None.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					EXAMPLES
 | 
				
			||||||
 | 
					--------
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					--------------------------------------------------------------------------------
 | 
				
			||||||
 | 
					__apt_norecommends
 | 
				
			||||||
 | 
					--------------------------------------------------------------------------------
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					SEE ALSO
 | 
				
			||||||
 | 
					--------
 | 
				
			||||||
 | 
					- cdist-type(7)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					COPYING
 | 
				
			||||||
 | 
					-------
 | 
				
			||||||
 | 
					Copyright \(C) 2014 Steven Armstrong. Free use of this software is
 | 
				
			||||||
 | 
					granted under the terms of the GNU General Public License version 3 (GPLv3).
 | 
				
			||||||
							
								
								
									
										42
									
								
								cdist/conf/type/__apt_norecommends/manifest
									
										
									
									
									
										Executable file
									
								
							
							
						
						
									
										42
									
								
								cdist/conf/type/__apt_norecommends/manifest
									
										
									
									
									
										Executable file
									
								
							| 
						 | 
					@ -0,0 +1,42 @@
 | 
				
			||||||
 | 
					#!/bin/sh
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# 2014 Steven Armstrong (steven-cdist at armstrong.cc)
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# This file is part of cdist.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# cdist is free software: you can redistribute it and/or modify
 | 
				
			||||||
 | 
					# it under the terms of the GNU General Public License as published by
 | 
				
			||||||
 | 
					# the Free Software Foundation, either version 3 of the License, or
 | 
				
			||||||
 | 
					# (at your option) any later version.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# cdist is distributed in the hope that it will be useful,
 | 
				
			||||||
 | 
					# but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 | 
					# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
				
			||||||
 | 
					# GNU General Public License for more details.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# You should have received a copy of the GNU General Public License
 | 
				
			||||||
 | 
					# along with cdist. If not, see <http://www.gnu.org/licenses/>.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					os=$(cat "$__global/explorer/os")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					case "$os" in
 | 
				
			||||||
 | 
					   ubuntu|debian)
 | 
				
			||||||
 | 
					      # No stinking recommends thank you very much.
 | 
				
			||||||
 | 
					      # If I want something installed I will do so myself.
 | 
				
			||||||
 | 
					      __file /etc/apt/apt.conf.d/99-no-recommends \
 | 
				
			||||||
 | 
					         --owner root --group root --mode 644 \
 | 
				
			||||||
 | 
					         --source - << DONE
 | 
				
			||||||
 | 
					APT::Install-Recommends "0";
 | 
				
			||||||
 | 
					APT::Install-Suggests "0";
 | 
				
			||||||
 | 
					DONE
 | 
				
			||||||
 | 
					   ;;
 | 
				
			||||||
 | 
					   *)
 | 
				
			||||||
 | 
					      cat >&2 << DONE
 | 
				
			||||||
 | 
					The developer of this type (${__type##*/}) did not think your operating system
 | 
				
			||||||
 | 
					($os) would have any use for it. If you think otherwise please submit a patch.
 | 
				
			||||||
 | 
					DONE
 | 
				
			||||||
 | 
					      exit 1
 | 
				
			||||||
 | 
					   ;;
 | 
				
			||||||
 | 
					esac
 | 
				
			||||||
							
								
								
									
										0
									
								
								cdist/conf/type/__apt_norecommends/singleton
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										0
									
								
								cdist/conf/type/__apt_norecommends/singleton
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -16,7 +16,8 @@ This cdist type allows manage ubuntu ppa repositories.
 | 
				
			||||||
REQUIRED PARAMETERS
 | 
					REQUIRED PARAMETERS
 | 
				
			||||||
-------------------
 | 
					-------------------
 | 
				
			||||||
state::
 | 
					state::
 | 
				
			||||||
   The state the ppa should be in, either "present" or "absent".
 | 
					   The state the ppa should be in, either 'present' or 'absent'.
 | 
				
			||||||
 | 
					   Defaults to 'present'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
OPTIONAL PARAMETERS
 | 
					OPTIONAL PARAMETERS
 | 
				
			||||||
| 
						 | 
					@ -29,6 +30,8 @@ EXAMPLES
 | 
				
			||||||
 | 
					
 | 
				
			||||||
--------------------------------------------------------------------------------
 | 
					--------------------------------------------------------------------------------
 | 
				
			||||||
# Enable a ppa repository
 | 
					# Enable a ppa repository
 | 
				
			||||||
 | 
					__apt_ppa ppa:sans-intern/missing-bits
 | 
				
			||||||
 | 
					# same as
 | 
				
			||||||
__apt_ppa ppa:sans-intern/missing-bits --state present
 | 
					__apt_ppa ppa:sans-intern/missing-bits --state present
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Disable a ppa repository
 | 
					# Disable a ppa repository
 | 
				
			||||||
| 
						 | 
					@ -43,5 +46,5 @@ SEE ALSO
 | 
				
			||||||
 | 
					
 | 
				
			||||||
COPYING
 | 
					COPYING
 | 
				
			||||||
-------
 | 
					-------
 | 
				
			||||||
Copyright \(C) 2011 Steven Armstrong. Free use of this software is
 | 
					Copyright \(C) 2011-2014 Steven Armstrong. Free use of this software is
 | 
				
			||||||
granted under the terms of the GNU General Public License version 3 (GPLv3).
 | 
					granted under the terms of the GNU General Public License version 3 (GPLv3).
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,6 +1,6 @@
 | 
				
			||||||
#!/bin/sh
 | 
					#!/bin/sh
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
# 2011 Steven Armstrong (steven-cdist at armstrong.cc)
 | 
					# 2011-2014 Steven Armstrong (steven-cdist at armstrong.cc)
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
# This file is part of cdist.
 | 
					# This file is part of cdist.
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
| 
						 | 
					@ -20,9 +20,10 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
name="$__object_id"
 | 
					name="$__object_id"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
__package python-software-properties --state present
 | 
					__package software-properties-common
 | 
				
			||||||
 | 
					__package python-software-properties
 | 
				
			||||||
 | 
					
 | 
				
			||||||
require="__package/python-software-properties" \
 | 
					require="__package/software-properties-common __package/python-software-properties" \
 | 
				
			||||||
   __file /usr/local/bin/remove-apt-repository \
 | 
					   __file /usr/local/bin/remove-apt-repository \
 | 
				
			||||||
   --source "$__type/files/remove-apt-repository" \
 | 
					   --source "$__type/files/remove-apt-repository" \
 | 
				
			||||||
   --mode 0755
 | 
					   --mode 0755
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
							
								
								
									
										1
									
								
								cdist/conf/type/__apt_ppa/parameter/default/state
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								cdist/conf/type/__apt_ppa/parameter/default/state
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1 @@
 | 
				
			||||||
 | 
					present
 | 
				
			||||||
							
								
								
									
										15
									
								
								cdist/conf/type/__apt_source/files/source.list.template
									
										
									
									
									
										Executable file
									
								
							
							
						
						
									
										15
									
								
								cdist/conf/type/__apt_source/files/source.list.template
									
										
									
									
									
										Executable file
									
								
							| 
						 | 
					@ -0,0 +1,15 @@
 | 
				
			||||||
 | 
					#!/bin/sh
 | 
				
			||||||
 | 
					set -u
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					entry="$uri $distribution $component"
 | 
				
			||||||
 | 
					cat << DONE
 | 
				
			||||||
 | 
					# Created by cdist ${__type##*/}
 | 
				
			||||||
 | 
					# Do not change. Changes will be overwritten.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# $name
 | 
				
			||||||
 | 
					deb ${forcedarch} $entry
 | 
				
			||||||
 | 
					DONE
 | 
				
			||||||
 | 
					if [ -f "$__object/parameter/include-src" ]; then
 | 
				
			||||||
 | 
					   echo "deb-src $entry"
 | 
				
			||||||
 | 
					fi
 | 
				
			||||||
							
								
								
									
										69
									
								
								cdist/conf/type/__apt_source/man.text
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										69
									
								
								cdist/conf/type/__apt_source/man.text
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1,69 @@
 | 
				
			||||||
 | 
					cdist-type__apt_source(7)
 | 
				
			||||||
 | 
					=========================
 | 
				
			||||||
 | 
					Steven Armstrong <steven-cdist--@--armstrong.cc>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					NAME
 | 
				
			||||||
 | 
					----
 | 
				
			||||||
 | 
					cdist-type__apt_source - manage apt sources
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					DESCRIPTION
 | 
				
			||||||
 | 
					-----------
 | 
				
			||||||
 | 
					This cdist type allows you to manage apt sources.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					REQUIRED PARAMETERS
 | 
				
			||||||
 | 
					-------------------
 | 
				
			||||||
 | 
					uri::
 | 
				
			||||||
 | 
					   the uri to the apt repository
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					OPTIONAL PARAMETERS
 | 
				
			||||||
 | 
					-------------------
 | 
				
			||||||
 | 
					arch::
 | 
				
			||||||
 | 
					   set this if you need to force and specific arch (ubuntu specific)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					state::
 | 
				
			||||||
 | 
					   'present' or 'absent', defaults to 'present'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					distribution::
 | 
				
			||||||
 | 
					   the distribution codename to use. Defaults to DISTRIB_CODENAME from
 | 
				
			||||||
 | 
					   the targets /etc/lsb-release
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					component::
 | 
				
			||||||
 | 
					   space delimited list of components to enable. Defaults to an empty string.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					BOOLEAN PARAMETERS
 | 
				
			||||||
 | 
					------------------
 | 
				
			||||||
 | 
					include-src::
 | 
				
			||||||
 | 
					   include deb-src entries
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					EXAMPLES
 | 
				
			||||||
 | 
					--------
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					--------------------------------------------------------------------------------
 | 
				
			||||||
 | 
					__apt_source rabbitmq \
 | 
				
			||||||
 | 
					   --uri http://www.rabbitmq.com/debian/ \
 | 
				
			||||||
 | 
					   --distribution testing \
 | 
				
			||||||
 | 
					   --component main \
 | 
				
			||||||
 | 
					   --include-src \
 | 
				
			||||||
 | 
					   --state present
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					__apt_source canonical_partner \
 | 
				
			||||||
 | 
					   --uri http://archive.canonical.com/ \
 | 
				
			||||||
 | 
					   --component partner --state present
 | 
				
			||||||
 | 
					--------------------------------------------------------------------------------
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					SEE ALSO
 | 
				
			||||||
 | 
					--------
 | 
				
			||||||
 | 
					- cdist-type(7)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					COPYING
 | 
				
			||||||
 | 
					-------
 | 
				
			||||||
 | 
					Copyright \(C) 2011-2014 Steven Armstrong. Free use of this software is
 | 
				
			||||||
 | 
					granted under the terms of the GNU General Public License version 3 (GPLv3).
 | 
				
			||||||
							
								
								
									
										56
									
								
								cdist/conf/type/__apt_source/manifest
									
										
									
									
									
										Executable file
									
								
							
							
						
						
									
										56
									
								
								cdist/conf/type/__apt_source/manifest
									
										
									
									
									
										Executable file
									
								
							| 
						 | 
					@ -0,0 +1,56 @@
 | 
				
			||||||
 | 
					#!/bin/sh
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# 2011-2013 Steven Armstrong (steven-cdist at armstrong.cc)
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# This file is part of cdist.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# cdist is free software: you can redistribute it and/or modify
 | 
				
			||||||
 | 
					# it under the terms of the GNU General Public License as published by
 | 
				
			||||||
 | 
					# the Free Software Foundation, either version 3 of the License, or
 | 
				
			||||||
 | 
					# (at your option) any later version.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# cdist is distributed in the hope that it will be useful,
 | 
				
			||||||
 | 
					# but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 | 
					# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
				
			||||||
 | 
					# GNU General Public License for more details.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# You should have received a copy of the GNU General Public License
 | 
				
			||||||
 | 
					# along with cdist. If not, see <http://www.gnu.org/licenses/>.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					name="$__object_id"
 | 
				
			||||||
 | 
					state="$(cat "$__object/parameter/state")"
 | 
				
			||||||
 | 
					uri="$(cat "$__object/parameter/uri")"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					if [ -f "$__object/parameter/distribution" ]; then
 | 
				
			||||||
 | 
					   distribution="$(cat "$__object/parameter/distribution")"
 | 
				
			||||||
 | 
					else
 | 
				
			||||||
 | 
					   distribution="$(cat "$__global/explorer/lsb_codename")"
 | 
				
			||||||
 | 
					fi
 | 
				
			||||||
 | 
					if [ -f "$__object/parameter/component" ]; then
 | 
				
			||||||
 | 
					   component="$(cat "$__object/parameter/component")"
 | 
				
			||||||
 | 
					else
 | 
				
			||||||
 | 
					   component=""
 | 
				
			||||||
 | 
					fi
 | 
				
			||||||
 | 
					if [ -f "$__object/parameter/arch" ]; then
 | 
				
			||||||
 | 
					   forcedarch="[arch=$(cat "$__object/parameter/arch")]"
 | 
				
			||||||
 | 
					else
 | 
				
			||||||
 | 
					   forcedarch=""
 | 
				
			||||||
 | 
					fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# export variables for use in template
 | 
				
			||||||
 | 
					export name
 | 
				
			||||||
 | 
					export uri
 | 
				
			||||||
 | 
					export distribution
 | 
				
			||||||
 | 
					export component
 | 
				
			||||||
 | 
					export forcedarch
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# generate file from template
 | 
				
			||||||
 | 
					mkdir "$__object/files"
 | 
				
			||||||
 | 
					"$__type/files/source.list.template" > "$__object/files/source.list"
 | 
				
			||||||
 | 
					__file "/etc/apt/sources.list.d/${name}.list" \
 | 
				
			||||||
 | 
					   --source "$__object/files/source.list" \
 | 
				
			||||||
 | 
					   --owner root --group root --mode 0644 \
 | 
				
			||||||
 | 
					   --state "$state"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					require="$__object_name" __apt_update_index
 | 
				
			||||||
							
								
								
									
										1
									
								
								cdist/conf/type/__apt_source/parameter/boolean
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								cdist/conf/type/__apt_source/parameter/boolean
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1 @@
 | 
				
			||||||
 | 
					include-src
 | 
				
			||||||
							
								
								
									
										1
									
								
								cdist/conf/type/__apt_source/parameter/default/state
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								cdist/conf/type/__apt_source/parameter/default/state
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1 @@
 | 
				
			||||||
 | 
					present
 | 
				
			||||||
							
								
								
									
										4
									
								
								cdist/conf/type/__apt_source/parameter/optional
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								cdist/conf/type/__apt_source/parameter/optional
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1,4 @@
 | 
				
			||||||
 | 
					state
 | 
				
			||||||
 | 
					distribution
 | 
				
			||||||
 | 
					component
 | 
				
			||||||
 | 
					arch
 | 
				
			||||||
							
								
								
									
										1
									
								
								cdist/conf/type/__apt_source/parameter/required
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								cdist/conf/type/__apt_source/parameter/required
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1 @@
 | 
				
			||||||
 | 
					uri
 | 
				
			||||||
							
								
								
									
										34
									
								
								cdist/conf/type/__ccollect_source/explorer/cksum
									
										
									
									
									
										Executable file
									
								
							
							
						
						
									
										34
									
								
								cdist/conf/type/__ccollect_source/explorer/cksum
									
										
									
									
									
										Executable file
									
								
							| 
						 | 
					@ -0,0 +1,34 @@
 | 
				
			||||||
 | 
					#!/bin/sh
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# 2011-2012 Nico Schottelius (nico-cdist at schottelius.org)
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# This file is part of cdist.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# cdist is free software: you can redistribute it and/or modify
 | 
				
			||||||
 | 
					# it under the terms of the GNU General Public License as published by
 | 
				
			||||||
 | 
					# the Free Software Foundation, either version 3 of the License, or
 | 
				
			||||||
 | 
					# (at your option) any later version.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# cdist is distributed in the hope that it will be useful,
 | 
				
			||||||
 | 
					# but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 | 
					# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
				
			||||||
 | 
					# GNU General Public License for more details.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# You should have received a copy of the GNU General Public License
 | 
				
			||||||
 | 
					# along with cdist. If not, see <http://www.gnu.org/licenses/>.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# Retrieve the md5sum of a file to be created, if it is already existing.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					destination="/$__object_id"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					if [ -e "$destination" ]; then
 | 
				
			||||||
 | 
					    if [ -f  "$destination" ]; then
 | 
				
			||||||
 | 
					        cksum < "$destination"
 | 
				
			||||||
 | 
					    else
 | 
				
			||||||
 | 
					        echo "NO REGULAR FILE"
 | 
				
			||||||
 | 
					    fi
 | 
				
			||||||
 | 
					else
 | 
				
			||||||
 | 
					    echo "NO FILE FOUND, NO CHECKSUM CALCULATED."
 | 
				
			||||||
 | 
					fi
 | 
				
			||||||
							
								
								
									
										47
									
								
								cdist/conf/type/__ccollect_source/explorer/stat
									
										
									
									
									
										Executable file
									
								
							
							
						
						
									
										47
									
								
								cdist/conf/type/__ccollect_source/explorer/stat
									
										
									
									
									
										Executable file
									
								
							| 
						 | 
					@ -0,0 +1,47 @@
 | 
				
			||||||
 | 
					#!/bin/sh
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# 2013 Steven Armstrong (steven-cdist armstrong.cc)
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# This file is part of cdist.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# cdist is free software: you can redistribute it and/or modify
 | 
				
			||||||
 | 
					# it under the terms of the GNU General Public License as published by
 | 
				
			||||||
 | 
					# the Free Software Foundation, either version 3 of the License, or
 | 
				
			||||||
 | 
					# (at your option) any later version.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# cdist is distributed in the hope that it will be useful,
 | 
				
			||||||
 | 
					# but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 | 
					# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
				
			||||||
 | 
					# GNU General Public License for more details.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# You should have received a copy of the GNU General Public License
 | 
				
			||||||
 | 
					# along with cdist. If not, see <http://www.gnu.org/licenses/>.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					destination="/$__object_id"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# nothing to work with, nothing we could do
 | 
				
			||||||
 | 
					[ -e "$destination" ] || exit 0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					os=$("$__explorer/os")
 | 
				
			||||||
 | 
					case "$os" in
 | 
				
			||||||
 | 
					   "freebsd")
 | 
				
			||||||
 | 
					      # FIXME: should be something like this based on man page, but can not test
 | 
				
			||||||
 | 
					      stat -f "type: %ST
 | 
				
			||||||
 | 
					owner: %Du %Su
 | 
				
			||||||
 | 
					group: %Dg %Sg
 | 
				
			||||||
 | 
					mode: %Op %Sp
 | 
				
			||||||
 | 
					size: %Dz
 | 
				
			||||||
 | 
					links: %Dl
 | 
				
			||||||
 | 
					" "$destination"
 | 
				
			||||||
 | 
					   ;;
 | 
				
			||||||
 | 
					   *)
 | 
				
			||||||
 | 
					      stat --printf="type: %F
 | 
				
			||||||
 | 
					owner: %u %U
 | 
				
			||||||
 | 
					group: %g %G
 | 
				
			||||||
 | 
					mode: %a %A
 | 
				
			||||||
 | 
					size: %s
 | 
				
			||||||
 | 
					links: %h
 | 
				
			||||||
 | 
					" "$destination"
 | 
				
			||||||
 | 
					   ;;
 | 
				
			||||||
 | 
					esac
 | 
				
			||||||
							
								
								
									
										33
									
								
								cdist/conf/type/__ccollect_source/explorer/type
									
										
									
									
									
										Executable file
									
								
							
							
						
						
									
										33
									
								
								cdist/conf/type/__ccollect_source/explorer/type
									
										
									
									
									
										Executable file
									
								
							| 
						 | 
					@ -0,0 +1,33 @@
 | 
				
			||||||
 | 
					#!/bin/sh
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# 2013 Steven Armstrong (steven-cdist armstrong.cc)
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# This file is part of cdist.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# cdist is free software: you can redistribute it and/or modify
 | 
				
			||||||
 | 
					# it under the terms of the GNU General Public License as published by
 | 
				
			||||||
 | 
					# the Free Software Foundation, either version 3 of the License, or
 | 
				
			||||||
 | 
					# (at your option) any later version.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# cdist is distributed in the hope that it will be useful,
 | 
				
			||||||
 | 
					# but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 | 
					# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
				
			||||||
 | 
					# GNU General Public License for more details.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# You should have received a copy of the GNU General Public License
 | 
				
			||||||
 | 
					# along with cdist. If not, see <http://www.gnu.org/licenses/>.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					destination="/$__object_id"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					if [ ! -e "$destination" ]; then
 | 
				
			||||||
 | 
					   echo none
 | 
				
			||||||
 | 
					elif [ -h "$destination" ]; then
 | 
				
			||||||
 | 
					   echo symlink
 | 
				
			||||||
 | 
					elif [ -f "$destination" ]; then
 | 
				
			||||||
 | 
					   echo file
 | 
				
			||||||
 | 
					elif [ -d "$destination" ]; then
 | 
				
			||||||
 | 
					   echo directory
 | 
				
			||||||
 | 
					else
 | 
				
			||||||
 | 
					   echo unknown
 | 
				
			||||||
 | 
					fi
 | 
				
			||||||
							
								
								
									
										93
									
								
								cdist/conf/type/__ccollect_source/gencode-remote
									
										
									
									
									
										Executable file
									
								
							
							
						
						
									
										93
									
								
								cdist/conf/type/__ccollect_source/gencode-remote
									
										
									
									
									
										Executable file
									
								
							| 
						 | 
					@ -0,0 +1,93 @@
 | 
				
			||||||
 | 
					#!/bin/sh
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# 2014 Nico Schottelius (nico-cdist at schottelius.org)
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# This file is part of cdist.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# cdist is free software: you can redistribute it and/or modify
 | 
				
			||||||
 | 
					# it under the terms of the GNU General Public License as published by
 | 
				
			||||||
 | 
					# the Free Software Foundation, either version 3 of the License, or
 | 
				
			||||||
 | 
					# (at your option) any later version.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# cdist is distributed in the hope that it will be useful,
 | 
				
			||||||
 | 
					# but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 | 
					# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
				
			||||||
 | 
					# GNU General Public License for more details.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# You should have received a copy of the GNU General Public License
 | 
				
			||||||
 | 
					# along with cdist. If not, see <http://www.gnu.org/licenses/>.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					destination="/$__object_id"
 | 
				
			||||||
 | 
					state_should="$(cat "$__object/parameter/state")"
 | 
				
			||||||
 | 
					type="$(cat "$__object/explorer/type")"
 | 
				
			||||||
 | 
					stat_file="$__object/explorer/stat"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					get_current_value() {
 | 
				
			||||||
 | 
					    if [ -s "$stat_file" ]; then
 | 
				
			||||||
 | 
					        _name="$1"
 | 
				
			||||||
 | 
					        _value="$2"
 | 
				
			||||||
 | 
					        case "$_value" in
 | 
				
			||||||
 | 
					            [0-9]*)
 | 
				
			||||||
 | 
					                _index=2
 | 
				
			||||||
 | 
					            ;;
 | 
				
			||||||
 | 
					            *)
 | 
				
			||||||
 | 
					                _index=3
 | 
				
			||||||
 | 
					            ;;
 | 
				
			||||||
 | 
					        esac
 | 
				
			||||||
 | 
					        awk '/'"$_name"':/ { print $'$_index' }' "$stat_file"
 | 
				
			||||||
 | 
					        unset _name _value _index
 | 
				
			||||||
 | 
					    fi
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					set_group() {
 | 
				
			||||||
 | 
					    echo chgrp \"$1\" \"$destination\"
 | 
				
			||||||
 | 
					    echo chgrp $1 >> "$__messages_out"
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					set_owner() {
 | 
				
			||||||
 | 
					    echo chown \"$1\" \"$destination\"
 | 
				
			||||||
 | 
					    echo chown $1 >> "$__messages_out"
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					set_mode() {
 | 
				
			||||||
 | 
					   echo chmod \"$1\" \"$destination\"
 | 
				
			||||||
 | 
					   echo chmod $1 >> "$__messages_out"
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					set_attributes=
 | 
				
			||||||
 | 
					case "$state_should" in
 | 
				
			||||||
 | 
					    present|exists)
 | 
				
			||||||
 | 
					    # Note: Mode - needs to happen last as a chown/chgrp can alter mode by
 | 
				
			||||||
 | 
					    #  clearing S_ISUID and S_ISGID bits (see chown(2))
 | 
				
			||||||
 | 
					    for attribute in group owner mode; do
 | 
				
			||||||
 | 
					        if [ -f "$__object/parameter/$attribute" ]; then
 | 
				
			||||||
 | 
					            value_should="$(cat "$__object/parameter/$attribute")"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            # change 0xxx format to xxx format => same as stat returns
 | 
				
			||||||
 | 
					            if [ "$attribute" = mode ]; then
 | 
				
			||||||
 | 
					                value_should="$(echo $value_should | sed 's/^0\(...\)/\1/')"
 | 
				
			||||||
 | 
					            fi
 | 
				
			||||||
 | 
					            
 | 
				
			||||||
 | 
					            value_is="$(get_current_value "$attribute" "$value_should")"
 | 
				
			||||||
 | 
					            if [ -f "$__object/files/set-attributes" -o "$value_should" != "$value_is" ]; then
 | 
				
			||||||
 | 
					                "set_$attribute" "$value_should"
 | 
				
			||||||
 | 
					            fi
 | 
				
			||||||
 | 
					        fi
 | 
				
			||||||
 | 
					    done
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    ;;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    absent)
 | 
				
			||||||
 | 
					        if [ "$type" = "file" ]; then
 | 
				
			||||||
 | 
					            echo rm -f \"$destination\"
 | 
				
			||||||
 | 
					            echo remove >> "$__messages_out"
 | 
				
			||||||
 | 
					        fi
 | 
				
			||||||
 | 
					    ;;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    *)
 | 
				
			||||||
 | 
					        echo "Unknown state: $state_should" >&2
 | 
				
			||||||
 | 
					        exit 1
 | 
				
			||||||
 | 
					    ;;
 | 
				
			||||||
 | 
					esac
 | 
				
			||||||
							
								
								
									
										64
									
								
								cdist/conf/type/__ccollect_source/man.text
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										64
									
								
								cdist/conf/type/__ccollect_source/man.text
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1,64 @@
 | 
				
			||||||
 | 
					cdist-type__ccollect_source(7)
 | 
				
			||||||
 | 
					==============================
 | 
				
			||||||
 | 
					Nico Schottelius <nico-cdist--@--schottelius.org>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					NAME
 | 
				
			||||||
 | 
					----
 | 
				
			||||||
 | 
					cdist-type__ccollect_source - Manage ccollect sources
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					DESCRIPTION
 | 
				
			||||||
 | 
					-----------
 | 
				
			||||||
 | 
					This cdist type allows you to create or delete ccollect sources.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					REQUIRED PARAMETERS
 | 
				
			||||||
 | 
					-------------------
 | 
				
			||||||
 | 
					source::
 | 
				
			||||||
 | 
					    The source from which to backup
 | 
				
			||||||
 | 
					destination::
 | 
				
			||||||
 | 
					    The destination directory
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					OPTIONAL PARAMETERS
 | 
				
			||||||
 | 
					-------------------
 | 
				
			||||||
 | 
					state::
 | 
				
			||||||
 | 
					    'present' or 'absent', defaults to 'present'
 | 
				
			||||||
 | 
					ccollectconf::
 | 
				
			||||||
 | 
					    The CCOLLECT_CONF directory. Defaults to /etc/ccollect.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					OPTIONAL MULTIPLE PARAMETERS
 | 
				
			||||||
 | 
					----------------------------
 | 
				
			||||||
 | 
					exclude::
 | 
				
			||||||
 | 
					    Paths to exclude of backup
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					BOOLEAN PARAMETERS
 | 
				
			||||||
 | 
					------------------
 | 
				
			||||||
 | 
					verbose::
 | 
				
			||||||
 | 
					    Whether to report backup verbosely
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					EXAMPLES
 | 
				
			||||||
 | 
					--------
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					--------------------------------------------------------------------------------
 | 
				
			||||||
 | 
					__ccollect_source doc.ungleich.ch \
 | 
				
			||||||
 | 
					    --source doc.ungleich.ch:/ \
 | 
				
			||||||
 | 
					    --destination /backup/doc.ungleich.ch \
 | 
				
			||||||
 | 
					    --exclude '/proc/*' --exclude '/sys/*' \
 | 
				
			||||||
 | 
					    --verbose
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					--------------------------------------------------------------------------------
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					SEE ALSO
 | 
				
			||||||
 | 
					--------
 | 
				
			||||||
 | 
					- cdist-type(7)
 | 
				
			||||||
 | 
					- ccollect(1)
 | 
				
			||||||
 | 
					- http://www.nico.schottelius.org/software/ccollect/
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					COPYING
 | 
				
			||||||
 | 
					-------
 | 
				
			||||||
 | 
					Copyright \(C) 2014 Nico Schottelius. Free use of this software is
 | 
				
			||||||
 | 
					granted under the terms of the GNU General Public License version 3 (GPLv3).
 | 
				
			||||||
							
								
								
									
										53
									
								
								cdist/conf/type/__ccollect_source/manifest
									
										
									
									
									
										Executable file
									
								
							
							
						
						
									
										53
									
								
								cdist/conf/type/__ccollect_source/manifest
									
										
									
									
									
										Executable file
									
								
							| 
						 | 
					@ -0,0 +1,53 @@
 | 
				
			||||||
 | 
					#!/bin/sh
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# 2014 Nico Schottelius (nico-cdist at schottelius.org)
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# This file is part of cdist.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# cdist is free software: you can redistribute it and/or modify
 | 
				
			||||||
 | 
					# it under the terms of the GNU General Public License as published by
 | 
				
			||||||
 | 
					# the Free Software Foundation, either version 3 of the License, or
 | 
				
			||||||
 | 
					# (at your option) any later version.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# cdist is distributed in the hope that it will be useful,
 | 
				
			||||||
 | 
					# but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 | 
					# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
				
			||||||
 | 
					# GNU General Public License for more details.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# You should have received a copy of the GNU General Public License
 | 
				
			||||||
 | 
					# along with cdist. If not, see <http://www.gnu.org/licenses/>.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					name="$__object_id"
 | 
				
			||||||
 | 
					state="$(cat "$__object/parameter/state")"
 | 
				
			||||||
 | 
					source="$(cat "$__object/parameter/source")"
 | 
				
			||||||
 | 
					destination="$(cat "$__object/parameter/destination")"
 | 
				
			||||||
 | 
					ccollectconf="$(cat "$__object/parameter/ccollectconf" | sed 's,/$,,')"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					sourcedir="$ccollectconf/sources"
 | 
				
			||||||
 | 
					basedir="$sourcedir/$name"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					destination_file="$basedir/destination"
 | 
				
			||||||
 | 
					source_file="$basedir/source"
 | 
				
			||||||
 | 
					exclude_file="$basedir/exclude"
 | 
				
			||||||
 | 
					verbose_file="$basedir/verbose"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					__directory "$basedir" --state "$state"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					export require="__directory$basedir"
 | 
				
			||||||
 | 
					echo "$destination" | __file "$destination_file" --source - --state "$state"
 | 
				
			||||||
 | 
					echo "$source" | __file "$source_file" --source - --state "$state"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					################################################################################
 | 
				
			||||||
 | 
					# Booleans
 | 
				
			||||||
 | 
					if [ -f "$__object/parameter/verbose" ]; then
 | 
				
			||||||
 | 
					    verbosestate="present"
 | 
				
			||||||
 | 
					else
 | 
				
			||||||
 | 
					    verbosestate="absent"
 | 
				
			||||||
 | 
					fi
 | 
				
			||||||
 | 
					__file "$verbose_file" --state "$verbosestate"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					if [ -f "$__object/parameter/exclude" ]; then
 | 
				
			||||||
 | 
					    __file "$exclude_file" --source - --state "$state" \
 | 
				
			||||||
 | 
					        < "$__object/parameter/exclude"
 | 
				
			||||||
 | 
					fi
 | 
				
			||||||
							
								
								
									
										1
									
								
								cdist/conf/type/__ccollect_source/parameter/boolean
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								cdist/conf/type/__ccollect_source/parameter/boolean
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1 @@
 | 
				
			||||||
 | 
					verbose
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1 @@
 | 
				
			||||||
 | 
					/etc/ccollect
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1 @@
 | 
				
			||||||
 | 
					present
 | 
				
			||||||
							
								
								
									
										2
									
								
								cdist/conf/type/__ccollect_source/parameter/optional
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										2
									
								
								cdist/conf/type/__ccollect_source/parameter/optional
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1,2 @@
 | 
				
			||||||
 | 
					ccollectconf
 | 
				
			||||||
 | 
					state
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1 @@
 | 
				
			||||||
 | 
					exclude
 | 
				
			||||||
							
								
								
									
										2
									
								
								cdist/conf/type/__ccollect_source/parameter/required
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										2
									
								
								cdist/conf/type/__ccollect_source/parameter/required
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1,2 @@
 | 
				
			||||||
 | 
					source
 | 
				
			||||||
 | 
					destination
 | 
				
			||||||
| 
						 | 
					@ -27,23 +27,11 @@ else
 | 
				
			||||||
   shell=""
 | 
					   shell=""
 | 
				
			||||||
fi
 | 
					fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
if [ -f "$__object/parameter/username" ]; then
 | 
					username="$(cat "$__object/parameter/username")"
 | 
				
			||||||
   username="$(cat "$__object/parameter/username")"
 | 
					 | 
				
			||||||
else
 | 
					 | 
				
			||||||
   username="cdist"
 | 
					 | 
				
			||||||
fi
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
if [ -f "$__object/parameter/branch" ]; then
 | 
					branch="$(cat "$__object/parameter/branch")"
 | 
				
			||||||
   branch="$(cat "$__object/parameter/branch")"
 | 
					 | 
				
			||||||
else
 | 
					 | 
				
			||||||
   branch="master"
 | 
					 | 
				
			||||||
fi
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
if [ -f "$__object/parameter/source" ]; then
 | 
					source="$(cat "$__object/parameter/source")"
 | 
				
			||||||
   source="$(cat "$__object/parameter/source")"
 | 
					 | 
				
			||||||
else
 | 
					 | 
				
			||||||
   source="git://github.com/telmich/cdist.git"
 | 
					 | 
				
			||||||
fi
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Currently hardcoded - if anyone cares, make a parameter
 | 
					# Currently hardcoded - if anyone cares, make a parameter
 | 
				
			||||||
# out of it
 | 
					# out of it
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
							
								
								
									
										1
									
								
								cdist/conf/type/__cdist/parameter/default/branch
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								cdist/conf/type/__cdist/parameter/default/branch
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1 @@
 | 
				
			||||||
 | 
					master
 | 
				
			||||||
							
								
								
									
										1
									
								
								cdist/conf/type/__cdist/parameter/default/source
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								cdist/conf/type/__cdist/parameter/default/source
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1 @@
 | 
				
			||||||
 | 
					git://github.com/telmich/cdist.git
 | 
				
			||||||
							
								
								
									
										1
									
								
								cdist/conf/type/__cdist/parameter/default/username
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								cdist/conf/type/__cdist/parameter/default/username
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1 @@
 | 
				
			||||||
 | 
					cdist
 | 
				
			||||||
| 
						 | 
					@ -1,6 +1,6 @@
 | 
				
			||||||
#!/bin/sh
 | 
					#!/bin/sh
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
# 2011 Nico Schottelius (nico-cdist at schottelius.org)
 | 
					# 2011-2014 Nico Schottelius (nico-cdist at schottelius.org)
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
# This file is part of cdist.
 | 
					# This file is part of cdist.
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
| 
						 | 
					@ -21,6 +21,12 @@
 | 
				
			||||||
# Setup selections
 | 
					# Setup selections
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					filename="$(cat "$__object/parameter/file")"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					if [ "$filename" = "-" ]; then
 | 
				
			||||||
 | 
					    filename="$__object/stdin"
 | 
				
			||||||
 | 
					fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
echo "debconf-set-selections << __file-eof"
 | 
					echo "debconf-set-selections << __file-eof"
 | 
				
			||||||
cat "$(cat "$__object/parameter/file")"
 | 
					cat "$filename"
 | 
				
			||||||
echo "__file-eof"
 | 
					echo "__file-eof"
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -18,6 +18,7 @@ REQUIRED PARAMETERS
 | 
				
			||||||
-------------------
 | 
					-------------------
 | 
				
			||||||
file::
 | 
					file::
 | 
				
			||||||
   Use the given filename as input for debconf-set-selections(1)
 | 
					   Use the given filename as input for debconf-set-selections(1)
 | 
				
			||||||
 | 
					   If filename is "-", read from stdin.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
EXAMPLES
 | 
					EXAMPLES
 | 
				
			||||||
| 
						 | 
					@ -29,6 +30,10 @@ __debconf_set_selections nslcd --file /path/to/file
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Setup configuration for nslcd from another type
 | 
					# Setup configuration for nslcd from another type
 | 
				
			||||||
__debconf_set_selections nslcd --file "$__type/files/preseed/nslcd"
 | 
					__debconf_set_selections nslcd --file "$__type/files/preseed/nslcd"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					__debconf_set_selections nslcd --file - << eof
 | 
				
			||||||
 | 
					gitolite gitolite/gituser string git
 | 
				
			||||||
 | 
					eof
 | 
				
			||||||
--------------------------------------------------------------------------------
 | 
					--------------------------------------------------------------------------------
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -41,5 +46,5 @@ SEE ALSO
 | 
				
			||||||
 | 
					
 | 
				
			||||||
COPYING
 | 
					COPYING
 | 
				
			||||||
-------
 | 
					-------
 | 
				
			||||||
Copyright \(C) 2011-2013 Nico Schottelius. Free use of this software is
 | 
					Copyright \(C) 2011-2014 Nico Schottelius. Free use of this software is
 | 
				
			||||||
granted under the terms of the GNU General Public License version 3 (GPLv3).
 | 
					granted under the terms of the GNU General Public License version 3 (GPLv3).
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
							
								
								
									
										24
									
								
								cdist/conf/type/__hostname/explorer/has_hostnamectl
									
										
									
									
									
										Executable file
									
								
							
							
						
						
									
										24
									
								
								cdist/conf/type/__hostname/explorer/has_hostnamectl
									
										
									
									
									
										Executable file
									
								
							| 
						 | 
					@ -0,0 +1,24 @@
 | 
				
			||||||
 | 
					#!/bin/sh
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# 2014 Nico Schottelius (nico-cdist at schottelius.org)
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# This file is part of cdist.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# cdist is free software: you can redistribute it and/or modify
 | 
				
			||||||
 | 
					# it under the terms of the GNU General Public License as published by
 | 
				
			||||||
 | 
					# the Free Software Foundation, either version 3 of the License, or
 | 
				
			||||||
 | 
					# (at your option) any later version.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# cdist is distributed in the hope that it will be useful,
 | 
				
			||||||
 | 
					# but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 | 
					# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
				
			||||||
 | 
					# GNU General Public License for more details.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# You should have received a copy of the GNU General Public License
 | 
				
			||||||
 | 
					# along with cdist. If not, see <http://www.gnu.org/licenses/>.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# Check whether system has hostnamectl
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					command -v hostnamectl || true
 | 
				
			||||||
							
								
								
									
										26
									
								
								cdist/conf/type/__hostname/explorer/hostname_file
									
										
									
									
									
										Executable file
									
								
							
							
						
						
									
										26
									
								
								cdist/conf/type/__hostname/explorer/hostname_file
									
										
									
									
									
										Executable file
									
								
							| 
						 | 
					@ -0,0 +1,26 @@
 | 
				
			||||||
 | 
					#!/bin/sh
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# 2014 Nico Schottelius (nico-cdist at schottelius.org)
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# This file is part of cdist.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# cdist is free software: you can redistribute it and/or modify
 | 
				
			||||||
 | 
					# it under the terms of the GNU General Public License as published by
 | 
				
			||||||
 | 
					# the Free Software Foundation, either version 3 of the License, or
 | 
				
			||||||
 | 
					# (at your option) any later version.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# cdist is distributed in the hope that it will be useful,
 | 
				
			||||||
 | 
					# but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 | 
					# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
				
			||||||
 | 
					# GNU General Public License for more details.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# You should have received a copy of the GNU General Public License
 | 
				
			||||||
 | 
					# along with cdist. If not, see <http://www.gnu.org/licenses/>.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# Retrieve the contents of /etc/hostname
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					if [ -f /etc/hostname ]; then
 | 
				
			||||||
 | 
					    cat /etc/hostname
 | 
				
			||||||
 | 
					fi
 | 
				
			||||||
							
								
								
									
										50
									
								
								cdist/conf/type/__hostname/gencode-remote
									
										
									
									
									
										Executable file
									
								
							
							
						
						
									
										50
									
								
								cdist/conf/type/__hostname/gencode-remote
									
										
									
									
									
										Executable file
									
								
							| 
						 | 
					@ -0,0 +1,50 @@
 | 
				
			||||||
 | 
					#!/bin/sh
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# 2014 Steven Armstrong (steven-cdist at armstrong.cc)
 | 
				
			||||||
 | 
					# 2014 Nico Schottelius (nico-cdist at schottelius.org)
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# This file is part of cdist.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# cdist is free software: you can redistribute it and/or modify
 | 
				
			||||||
 | 
					# it under the terms of the GNU General Public License as published by
 | 
				
			||||||
 | 
					# the Free Software Foundation, either version 3 of the License, or
 | 
				
			||||||
 | 
					# (at your option) any later version.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# cdist is distributed in the hope that it will be useful,
 | 
				
			||||||
 | 
					# but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 | 
					# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
				
			||||||
 | 
					# GNU General Public License for more details.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# You should have received a copy of the GNU General Public License
 | 
				
			||||||
 | 
					# along with cdist. If not, see <http://www.gnu.org/licenses/>.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					if [ -f "$__object/parameter/name" ]; then
 | 
				
			||||||
 | 
					    name_should="$(cat "$__object/parameter/name")"
 | 
				
			||||||
 | 
					else
 | 
				
			||||||
 | 
					    name_should="$(echo "${__target_host%%.*}")"
 | 
				
			||||||
 | 
					fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					os=$(cat "$__global/explorer/os")
 | 
				
			||||||
 | 
					name_running=$(cat "$__global/explorer/hostname")
 | 
				
			||||||
 | 
					name_config=$(cat "$__object/explorer/hostname_file")
 | 
				
			||||||
 | 
					has_hostnamectl=$(cat "$__object/explorer/has_hostnamectl")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					################################################################################
 | 
				
			||||||
 | 
					# If everything is ok -> exit
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					if [ "$name_config" = "$name_should" -a "$name_running" = "$name_should" ]; then
 | 
				
			||||||
 | 
					    exit 0
 | 
				
			||||||
 | 
					fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					################################################################################
 | 
				
			||||||
 | 
					# Setup hostname
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					echo changed >> "$__messages_out"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					if [ "$has_hostnamectl" ]; then
 | 
				
			||||||
 | 
					    echo "hostnamectl set-hostname '$name_should'"
 | 
				
			||||||
 | 
					else
 | 
				
			||||||
 | 
					    echo "hostname '$name_should'"
 | 
				
			||||||
 | 
					    echo "printf '%s\n' '$name_should' > /etc/hostname"
 | 
				
			||||||
 | 
					fi
 | 
				
			||||||
							
								
								
									
										52
									
								
								cdist/conf/type/__hostname/man.text
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										52
									
								
								cdist/conf/type/__hostname/man.text
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1,52 @@
 | 
				
			||||||
 | 
					cdist-type__hostname(7)
 | 
				
			||||||
 | 
					=======================
 | 
				
			||||||
 | 
					Steven Armstrong <steven-cdist--@--armstrong.cc>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					NAME
 | 
				
			||||||
 | 
					----
 | 
				
			||||||
 | 
					cdist-type__hostname - set the hostname
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					DESCRIPTION
 | 
				
			||||||
 | 
					-----------
 | 
				
			||||||
 | 
					Set's the hostname on various operating systems.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					REQUIRED PARAMETERS
 | 
				
			||||||
 | 
					-------------------
 | 
				
			||||||
 | 
					None.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					OPTIONAL PARAMETERS
 | 
				
			||||||
 | 
					-------------------
 | 
				
			||||||
 | 
					name::
 | 
				
			||||||
 | 
					   The hostname to set. Defaults to the first segment of __target_host 
 | 
				
			||||||
 | 
					   (${__target_host%%.*})
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					MESSAGES
 | 
				
			||||||
 | 
					--------
 | 
				
			||||||
 | 
					changed::
 | 
				
			||||||
 | 
					    Changed the hostname
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					EXAMPLES
 | 
				
			||||||
 | 
					--------
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					--------------------------------------------------------------------------------
 | 
				
			||||||
 | 
					# take hostname from __target_host
 | 
				
			||||||
 | 
					__hostname
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# set hostname explicitly
 | 
				
			||||||
 | 
					__hostname --name some-static-hostname
 | 
				
			||||||
 | 
					--------------------------------------------------------------------------------
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					SEE ALSO
 | 
				
			||||||
 | 
					--------
 | 
				
			||||||
 | 
					- cdist-type(7)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					COPYING
 | 
				
			||||||
 | 
					-------
 | 
				
			||||||
 | 
					Copyright \(C) 2012 Steven Armstrong. Free use of this software is
 | 
				
			||||||
 | 
					granted under the terms of the GNU General Public License version 3 (GPLv3).
 | 
				
			||||||
| 
						 | 
					@ -1,6 +1,7 @@
 | 
				
			||||||
#!/bin/sh
 | 
					#!/bin/sh
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
# 2012 Steven Armstrong (steven-cdist at armstrong.cc)
 | 
					# 2012 Steven Armstrong (steven-cdist at armstrong.cc)
 | 
				
			||||||
 | 
					# 2014 Nico Schottelius (nico-cdist at schottelius.org)
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
# This file is part of cdist.
 | 
					# This file is part of cdist.
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
| 
						 | 
					@ -18,28 +19,20 @@
 | 
				
			||||||
# along with cdist. If not, see <http://www.gnu.org/licenses/>.
 | 
					# along with cdist. If not, see <http://www.gnu.org/licenses/>.
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
 | 
					
 | 
				
			||||||
owner="$(cat "$__object/parameter/owner" 2>/dev/null || echo "$__object_id")"
 | 
					os=$(cat "$__global/explorer/os")
 | 
				
			||||||
if [ -f "$__object/parameter/file" ]; then
 | 
					 | 
				
			||||||
   file="$(cat "$__object/parameter/file")"
 | 
					 | 
				
			||||||
else
 | 
					 | 
				
			||||||
   home="$("$__type_explorer/passwd" | cut -d':' -f 6)"
 | 
					 | 
				
			||||||
   file="$home/.ssh/authorized_keys"
 | 
					 | 
				
			||||||
fi
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
# no authorized_keys file, nothing we could do
 | 
					not_supported() {
 | 
				
			||||||
[ -f "$file" ] || exit 0
 | 
					   echo "Your operating system ($os) is currently not supported by this type (${__type##*/})." >&2
 | 
				
			||||||
 | 
					   echo "Please contribute an implementation for it if you can." >&2
 | 
				
			||||||
 | 
					   exit 1
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# NOTE: keep variables in sync in manifest/explorer/gencode-*
 | 
					case "$os" in
 | 
				
			||||||
prefix="#cdist:$__object_name"
 | 
					   archlinux|debian|ubuntu)
 | 
				
			||||||
suffix="#/cdist:$__object_name"
 | 
					      # handled in gencode-remote
 | 
				
			||||||
awk -v prefix="$prefix" -v suffix="$suffix" '{
 | 
					      :
 | 
				
			||||||
   if (index($0,prefix)) {
 | 
					   ;;
 | 
				
			||||||
      triggered=1
 | 
					   *)
 | 
				
			||||||
   }
 | 
					      not_supported
 | 
				
			||||||
   if (triggered) {
 | 
					   ;;
 | 
				
			||||||
      if (index($0,suffix)) {
 | 
					esac
 | 
				
			||||||
            triggered=0
 | 
					 | 
				
			||||||
      }
 | 
					 | 
				
			||||||
      print
 | 
					 | 
				
			||||||
   }
 | 
					 | 
				
			||||||
}' "$file"
 | 
					 | 
				
			||||||
							
								
								
									
										1
									
								
								cdist/conf/type/__hostname/parameter/optional
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								cdist/conf/type/__hostname/parameter/optional
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1 @@
 | 
				
			||||||
 | 
					name
 | 
				
			||||||
							
								
								
									
										0
									
								
								cdist/conf/type/__hostname/singleton
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										0
									
								
								cdist/conf/type/__hostname/singleton
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -23,7 +23,7 @@
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
 | 
					
 | 
				
			||||||
if [ -f "$__object/parameter/jaildir" ]; then
 | 
					if [ -f "$__object/parameter/jaildir" ]; then
 | 
				
			||||||
   jaildir="$(cat "$__object/parameter/name")"
 | 
					   jaildir="$(cat "$__object/parameter/jaildir")"
 | 
				
			||||||
else
 | 
					else
 | 
				
			||||||
   jaildir="/usr/jail"
 | 
					   jaildir="/usr/jail"
 | 
				
			||||||
fi
 | 
					fi
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -85,7 +85,7 @@ if [ -f "$__object/parameter/onboot" ]; then
 | 
				
			||||||
fi
 | 
					fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
if [ -f "$__object/parameter/jaildir" ]; then
 | 
					if [ -f "$__object/parameter/jaildir" ]; then
 | 
				
			||||||
   jaildir="$(cat "$__object/parameter/name")"
 | 
					   jaildir="$(cat "$__object/parameter/jaildir")"
 | 
				
			||||||
else
 | 
					else
 | 
				
			||||||
   jaildir="/usr/jail"
 | 
					   jaildir="/usr/jail"
 | 
				
			||||||
fi
 | 
					fi
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -34,7 +34,7 @@ if [ ! "$os" = "freebsd" ]; then
 | 
				
			||||||
fi
 | 
					fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
if [ -f "$__object/parameter/jaildir" ]; then
 | 
					if [ -f "$__object/parameter/jaildir" ]; then
 | 
				
			||||||
   jaildir="$(cat "$__object/parameter/name")"
 | 
					   jaildir="$(cat "$__object/parameter/jaildir")"
 | 
				
			||||||
else
 | 
					else
 | 
				
			||||||
   jaildir="/usr/jail"
 | 
					   jaildir="/usr/jail"
 | 
				
			||||||
fi
 | 
					fi
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -21,8 +21,8 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
key="$__object_id"
 | 
					key="$__object_id"
 | 
				
			||||||
[ -f "$__object/parameter/key" ] && key="$(cat "$__object/parameter/key")"
 | 
					[ -f "$__object/parameter/key" ] && key="$(cat "$__object/parameter/key")"
 | 
				
			||||||
state_should=present
 | 
					
 | 
				
			||||||
[ -f "$__object/parameter/state" ] && state_should="$(cat "$__object/parameter/state")"
 | 
					state_should="$(cat "$__object/parameter/state")"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
file="$(cat "$__object/parameter/file")"
 | 
					file="$(cat "$__object/parameter/file")"
 | 
				
			||||||
delimiter="$(cat "$__object/parameter/delimiter")"
 | 
					delimiter="$(cat "$__object/parameter/delimiter")"
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -19,8 +19,7 @@
 | 
				
			||||||
# along with cdist. If not, see <http://www.gnu.org/licenses/>.
 | 
					# along with cdist. If not, see <http://www.gnu.org/licenses/>.
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
 | 
					
 | 
				
			||||||
state_should=present
 | 
					state_should="$(cat "$__object/parameter/state")"
 | 
				
			||||||
[ -f "$__object/parameter/state" ] && state_should="$(cat "$__object/parameter/state")"
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
if [ "$state_should" = "present" -a ! -f "$__object/parameter/value" ]; then
 | 
					if [ "$state_should" = "present" -a ! -f "$__object/parameter/value" ]; then
 | 
				
			||||||
   echo "Missing required parameter 'value'" >&2
 | 
					   echo "Missing required parameter 'value'" >&2
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
							
								
								
									
										1
									
								
								cdist/conf/type/__key_value/parameter/default/state
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								cdist/conf/type/__key_value/parameter/default/state
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1 @@
 | 
				
			||||||
 | 
					present
 | 
				
			||||||
| 
						 | 
					@ -58,7 +58,7 @@ case "$state_should" in
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        # Only replace ' with '"'"' and keep \ as they are
 | 
					        # Only replace ' with '"'"' and keep \ as they are
 | 
				
			||||||
        line_sanitised=$(cat "$__object/parameter/line" | sed -e "s/'/'\"'\"'/g")
 | 
					        line_sanitised=$(cat "$__object/parameter/line" | sed -e "s/'/'\"'\"'/g")
 | 
				
			||||||
        echo "printf '%s\n' '$line_sanitised' >> $file"
 | 
					        printf '%s' "printf '%s\n' '$line_sanitised' >> $file"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    ;;
 | 
					    ;;
 | 
				
			||||||
    absent)
 | 
					    absent)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -26,9 +26,9 @@ if [ ! -f "$__object/parameter/nofstab" ]; then
 | 
				
			||||||
   (
 | 
					   (
 | 
				
			||||||
printf "%s" "$(cat "$__object/parameter/device")"
 | 
					printf "%s" "$(cat "$__object/parameter/device")"
 | 
				
			||||||
printf " %s" "$path"
 | 
					printf " %s" "$path"
 | 
				
			||||||
type="$(cat "$__object/parameter/type" || echo "auto")"
 | 
					type="$(cat "$__object/parameter/type" 2>/dev/null || echo "auto")"
 | 
				
			||||||
printf " %s" "$type"
 | 
					printf " %s" "$type"
 | 
				
			||||||
options="$(cat "$__object/parameter/options" || echo "defaults")"
 | 
					options="$(cat "$__object/parameter/options" 2>/dev/null || echo "defaults")"
 | 
				
			||||||
printf " %s" "$options"
 | 
					printf " %s" "$options"
 | 
				
			||||||
printf " %s" "$(cat "$__object/parameter/dump")"
 | 
					printf " %s" "$(cat "$__object/parameter/dump")"
 | 
				
			||||||
printf " %s\n" "$(cat "$__object/parameter/pass")"
 | 
					printf " %s\n" "$(cat "$__object/parameter/pass")"
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,6 +1,7 @@
 | 
				
			||||||
#!/bin/sh
 | 
					#!/bin/sh
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
# 2011-2012 Nico Schottelius (nico-cdist at schottelius.org)
 | 
					# 2011-2012 Nico Schottelius (nico-cdist at schottelius.org)
 | 
				
			||||||
 | 
					# 2014 Steven Armstrong (steven-cdist at armstrong.cc)
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
# This file is part of cdist.
 | 
					# This file is part of cdist.
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
| 
						 | 
					@ -17,7 +18,6 @@
 | 
				
			||||||
# You should have received a copy of the GNU General Public License
 | 
					# You should have received a copy of the GNU General Public License
 | 
				
			||||||
# along with cdist. If not, see <http://www.gnu.org/licenses/>.
 | 
					# along with cdist. If not, see <http://www.gnu.org/licenses/>.
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
#
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
if [ -f "$__object/parameter/name" ]; then
 | 
					if [ -f "$__object/parameter/name" ]; then
 | 
				
			||||||
    name="$(cat "$__object/parameter/name")"
 | 
					    name="$(cat "$__object/parameter/name")"
 | 
				
			||||||
| 
						 | 
					@ -25,21 +25,18 @@ else
 | 
				
			||||||
    name="$__object_id"
 | 
					    name="$__object_id"
 | 
				
			||||||
fi
 | 
					fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
parameter_state="$__object/parameter/state"
 | 
					state_should="$(cat "$__object/parameter/state")"
 | 
				
			||||||
if [ -f "$_parameter_state" ]; then
 | 
					 | 
				
			||||||
    state_should=$(cat "$__object/parameter/state")
 | 
					 | 
				
			||||||
else
 | 
					 | 
				
			||||||
    state_should="present"
 | 
					 | 
				
			||||||
fi
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
runs="$(cat "$__object/explorer/runs")"
 | 
					if [ -s "$__object/explorer/runs" ]; then
 | 
				
			||||||
if [ "$runs" ]; then
 | 
					 | 
				
			||||||
    state_is="present"
 | 
					    state_is="present"
 | 
				
			||||||
else
 | 
					else
 | 
				
			||||||
    state_is="absent"
 | 
					    state_is="absent"
 | 
				
			||||||
fi
 | 
					fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
[ "$state_is" = "$state_should" ] && exit 0
 | 
					if [ "$state_is" = "$state_should" ]; then
 | 
				
			||||||
 | 
					   # nothing to do
 | 
				
			||||||
 | 
					   exit 0
 | 
				
			||||||
 | 
					fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
case "$state_should" in
 | 
					case "$state_should" in
 | 
				
			||||||
    present)
 | 
					    present)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
							
								
								
									
										1
									
								
								cdist/conf/type/__process/parameter/default/state
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								cdist/conf/type/__process/parameter/default/state
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1 @@
 | 
				
			||||||
 | 
					present
 | 
				
			||||||
| 
						 | 
					@ -2,8 +2,7 @@
 | 
				
			||||||
# State: absent is handled by manifest - we need only to do stuff if image is
 | 
					# State: absent is handled by manifest - we need only to do stuff if image is
 | 
				
			||||||
# not existing and state != absent
 | 
					# not existing and state != absent
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
state="present"
 | 
					state="$(cat "$__object/parameter/state")"
 | 
				
			||||||
[ -f "$__object/parameter/state" ] && state="$(cat "$__object/parameter/state")"
 | 
					 | 
				
			||||||
[ "$state" = "absent" ] && exit 0
 | 
					[ "$state" = "absent" ] && exit 0
 | 
				
			||||||
 | 
					
 | 
				
			||||||
exists="$(cat "$__object/explorer/exists")"
 | 
					exists="$(cat "$__object/explorer/exists")"
 | 
				
			||||||
| 
						 | 
					@ -13,8 +12,7 @@ exists="$(cat "$__object/explorer/exists")"
 | 
				
			||||||
# Still there? Create image
 | 
					# Still there? Create image
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
 | 
					
 | 
				
			||||||
format=qcow2
 | 
					format="$(cat "$__object/parameter/format")"
 | 
				
			||||||
[ -f "$__object/parameter/format" ] && format="$(cat "$__object/parameter/format")"
 | 
					 | 
				
			||||||
size="$(cat "$__object/parameter/size")"
 | 
					size="$(cat "$__object/parameter/size")"
 | 
				
			||||||
diskimage="/$__object_id"
 | 
					diskimage="/$__object_id"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -2,10 +2,8 @@
 | 
				
			||||||
# Default settings
 | 
					# Default settings
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
 | 
					
 | 
				
			||||||
format=qcow2
 | 
					format="$(cat "$__object/parameter/format")"
 | 
				
			||||||
state=present
 | 
					state="$(cat "$__object/parameter/state")"
 | 
				
			||||||
[ -f "$__object/parameter/format" ] && format="$(cat "$__object/parameter/format")"
 | 
					 | 
				
			||||||
[ -f "$__object/parameter/state" ] && state="$(cat "$__object/parameter/state")"
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
diskimage="/$__object_id"
 | 
					diskimage="/$__object_id"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
							
								
								
									
										1
									
								
								cdist/conf/type/__qemu_img/parameter/default/format
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								cdist/conf/type/__qemu_img/parameter/default/format
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1 @@
 | 
				
			||||||
 | 
					qcow2
 | 
				
			||||||
							
								
								
									
										1
									
								
								cdist/conf/type/__qemu_img/parameter/default/state
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								cdist/conf/type/__qemu_img/parameter/default/state
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1 @@
 | 
				
			||||||
 | 
					present
 | 
				
			||||||
| 
						 | 
					@ -1 +1,2 @@
 | 
				
			||||||
format
 | 
					format
 | 
				
			||||||
 | 
					state
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,84 +0,0 @@
 | 
				
			||||||
#!/bin/sh
 | 
					 | 
				
			||||||
#
 | 
					 | 
				
			||||||
# 2012-2013 Steven Armstrong (steven-cdist at armstrong.cc)
 | 
					 | 
				
			||||||
#
 | 
					 | 
				
			||||||
# This file is part of cdist.
 | 
					 | 
				
			||||||
#
 | 
					 | 
				
			||||||
# cdist is free software: you can redistribute it and/or modify
 | 
					 | 
				
			||||||
# it under the terms of the GNU General Public License as published by
 | 
					 | 
				
			||||||
# the Free Software Foundation, either version 3 of the License, or
 | 
					 | 
				
			||||||
# (at your option) any later version.
 | 
					 | 
				
			||||||
#
 | 
					 | 
				
			||||||
# cdist is distributed in the hope that it will be useful,
 | 
					 | 
				
			||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					 | 
				
			||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
					 | 
				
			||||||
# GNU General Public License for more details.
 | 
					 | 
				
			||||||
#
 | 
					 | 
				
			||||||
# You should have received a copy of the GNU General Public License
 | 
					 | 
				
			||||||
# along with cdist. If not, see <http://www.gnu.org/licenses/>.
 | 
					 | 
				
			||||||
#
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
owner="$(cat "$__object/parameter/owner" 2>/dev/null || echo "$__object_id")"
 | 
					 | 
				
			||||||
if [ -f "$__object/parameter/file" ]; then
 | 
					 | 
				
			||||||
   file="$(cat "$__object/parameter/file")"
 | 
					 | 
				
			||||||
else
 | 
					 | 
				
			||||||
   home="$(cut -d':' -f 6 "$__object/explorer/passwd")"
 | 
					 | 
				
			||||||
   file="$home/.ssh/authorized_keys"
 | 
					 | 
				
			||||||
fi
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
entry="$__object/files/entry"
 | 
					 | 
				
			||||||
if [ ! -s "$__object/explorer/entry" ]; then
 | 
					 | 
				
			||||||
   state_is='absent'
 | 
					 | 
				
			||||||
else
 | 
					 | 
				
			||||||
   state_is=$(diff -q "$entry" "$__object/explorer/entry" >/dev/null \
 | 
					 | 
				
			||||||
      && echo present \
 | 
					 | 
				
			||||||
      || echo changed
 | 
					 | 
				
			||||||
   )
 | 
					 | 
				
			||||||
fi
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
state_should="$(cat "$__object/parameter/state" 2>/dev/null || echo present)"
 | 
					 | 
				
			||||||
if [ "$state_should" = "$state_is" ]; then
 | 
					 | 
				
			||||||
   # Nothing to do, move along
 | 
					 | 
				
			||||||
   exit 0
 | 
					 | 
				
			||||||
fi
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
remove_entry() {
 | 
					 | 
				
			||||||
   # NOTE: keep variables in sync in manifest/explorer/gencode-*
 | 
					 | 
				
			||||||
   prefix="#cdist:$__object_name"
 | 
					 | 
				
			||||||
   suffix="#/cdist:$__object_name"
 | 
					 | 
				
			||||||
   cat << DONE
 | 
					 | 
				
			||||||
tmpfile=\$(mktemp ${file}.cdist.XXXXXXXXXX)
 | 
					 | 
				
			||||||
# preserve ownership and permissions by copying existing file over tmpfile
 | 
					 | 
				
			||||||
cp -p "$file" "\$tmpfile"
 | 
					 | 
				
			||||||
awk -v prefix="$prefix" -v suffix="$suffix" '
 | 
					 | 
				
			||||||
{
 | 
					 | 
				
			||||||
   if (index(\$0,prefix)) {
 | 
					 | 
				
			||||||
      triggered=1
 | 
					 | 
				
			||||||
   }
 | 
					 | 
				
			||||||
   if (triggered) {
 | 
					 | 
				
			||||||
      if (index(\$0,suffix)) {
 | 
					 | 
				
			||||||
         triggered=0
 | 
					 | 
				
			||||||
      }
 | 
					 | 
				
			||||||
   } else {
 | 
					 | 
				
			||||||
      print
 | 
					 | 
				
			||||||
   }
 | 
					 | 
				
			||||||
}' "$file" > "\$tmpfile"
 | 
					 | 
				
			||||||
mv -f "\$tmpfile" "$file"
 | 
					 | 
				
			||||||
DONE
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
case "$state_should" in
 | 
					 | 
				
			||||||
   present)
 | 
					 | 
				
			||||||
      if [ "$state_is" = "changed" ]; then
 | 
					 | 
				
			||||||
         remove_entry
 | 
					 | 
				
			||||||
      fi
 | 
					 | 
				
			||||||
      cat << DONE
 | 
					 | 
				
			||||||
cat >> "$file" << ${__type##*/}_DONE
 | 
					 | 
				
			||||||
$(cat "$entry")
 | 
					 | 
				
			||||||
${__type##*/}_DONE
 | 
					 | 
				
			||||||
DONE
 | 
					 | 
				
			||||||
   ;;
 | 
					 | 
				
			||||||
   absent)
 | 
					 | 
				
			||||||
      remove_entry
 | 
					 | 
				
			||||||
   ;;
 | 
					 | 
				
			||||||
esac
 | 
					 | 
				
			||||||
| 
						 | 
					@ -19,7 +19,7 @@
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
 | 
					
 | 
				
			||||||
owner="$(cat "$__object/parameter/owner" 2>/dev/null || echo "$__object_id")"
 | 
					owner="$(cat "$__object/parameter/owner" 2>/dev/null || echo "$__object_id")"
 | 
				
			||||||
state="$(cat "$__object/parameter/state" 2>/dev/null || echo "present")"
 | 
					state="$(cat "$__object/parameter/state" 2>/dev/null)"
 | 
				
			||||||
if [ -f "$__object/parameter/file" ]; then
 | 
					if [ -f "$__object/parameter/file" ]; then
 | 
				
			||||||
   file="$(cat "$__object/parameter/file")"
 | 
					   file="$(cat "$__object/parameter/file")"
 | 
				
			||||||
else
 | 
					else
 | 
				
			||||||
| 
						 | 
					@ -56,19 +56,16 @@ if [ ! -f "$__object/parameter/noparent" -o ! -f "$__object/parameter/nofile" ];
 | 
				
			||||||
   fi
 | 
					   fi
 | 
				
			||||||
fi
 | 
					fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# NOTE: keep variables in sync in manifest/explorer/gencode-*
 | 
					 | 
				
			||||||
prefix="#cdist:$__object_name"
 | 
					 | 
				
			||||||
suffix="#/cdist:$__object_name"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
mkdir "$__object/files"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
# Generate entry for inclusion in authorized_keys file
 | 
					# Generate entry for inclusion in authorized_keys file
 | 
				
			||||||
entry="$__object/files/entry"
 | 
					(
 | 
				
			||||||
echo "$prefix" > "$entry"
 | 
					 | 
				
			||||||
if [ -f "$__object/parameter/comment" ]; then
 | 
					if [ -f "$__object/parameter/comment" ]; then
 | 
				
			||||||
   echo "# $(cat "$__object/parameter/comment")" >> "$entry"
 | 
					   echo "# $(cat "$__object/parameter/comment")"
 | 
				
			||||||
fi
 | 
					fi
 | 
				
			||||||
cat "$__object/parameter/key" >> "$entry"
 | 
					cat "$__object/parameter/key"
 | 
				
			||||||
# ensure we have a newline after keys
 | 
					) | \
 | 
				
			||||||
echo >> "$entry"
 | 
					__block "$__object_name" \
 | 
				
			||||||
echo "$suffix" >> "$entry"
 | 
					   --file "$file" \
 | 
				
			||||||
 | 
					   --prefix "#cdist:$__object_name" \
 | 
				
			||||||
 | 
					   --suffix "#/cdist:$__object_name" \
 | 
				
			||||||
 | 
					   --state "$state" \
 | 
				
			||||||
 | 
					   --text -
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1 @@
 | 
				
			||||||
 | 
					present
 | 
				
			||||||
| 
						 | 
					@ -45,11 +45,7 @@ else
 | 
				
			||||||
   id="$__object_id"
 | 
					   id="$__object_id"
 | 
				
			||||||
fi
 | 
					fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
if [ -f "$__object/parameter/state" ]; then
 | 
					state="$(cat "$__object/parameter/state")"
 | 
				
			||||||
   state="$(cat "$__object/parameter/state")"
 | 
					 | 
				
			||||||
else
 | 
					 | 
				
			||||||
   state="present"
 | 
					 | 
				
			||||||
fi
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
repo_id="$(cat "$__object/explorer/repo_id")"
 | 
					repo_id="$(cat "$__object/explorer/repo_id")"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -39,17 +39,8 @@ else
 | 
				
			||||||
   uri="$__object_id"
 | 
					   uri="$__object_id"
 | 
				
			||||||
fi
 | 
					fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
if [ -f "$__object/parameter/state" ]; then
 | 
					state_should="$(cat "$__object/parameter/state")"
 | 
				
			||||||
   state_should="$(cat "$__object/parameter/state")"
 | 
					stype="$(cat "$__object/parameter/type")"
 | 
				
			||||||
else
 | 
					 | 
				
			||||||
   state_should="present"
 | 
					 | 
				
			||||||
fi
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
if [ -f "$__object/parameter/type" ]; then
 | 
					 | 
				
			||||||
   stype="$(cat "$__object/parameter/type")"
 | 
					 | 
				
			||||||
else
 | 
					 | 
				
			||||||
   stype="ris"
 | 
					 | 
				
			||||||
fi
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
exp_uri="$(cat "$__object/explorer/service_uri")"
 | 
					exp_uri="$(cat "$__object/explorer/service_uri")"
 | 
				
			||||||
exp_id="$(cat "$__object/explorer/service_id")"
 | 
					exp_id="$(cat "$__object/explorer/service_id")"
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -33,11 +33,7 @@ else
 | 
				
			||||||
   uri="$__object_id"
 | 
					   uri="$__object_id"
 | 
				
			||||||
fi
 | 
					fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
if [ -f "$__object/parameter/state" ]; then
 | 
					state_should="$(cat "$__object/parameter/state")"
 | 
				
			||||||
   state_should="$(cat "$__object/parameter/state")"
 | 
					 | 
				
			||||||
else
 | 
					 | 
				
			||||||
   state_should="present"
 | 
					 | 
				
			||||||
fi
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
exp_uri="$(cat "$__object/explorer/service_uri")"
 | 
					exp_uri="$(cat "$__object/explorer/service_uri")"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -163,8 +163,12 @@ class Config(object):
 | 
				
			||||||
        """Short name for object list retrieval"""
 | 
					        """Short name for object list retrieval"""
 | 
				
			||||||
        for cdist_object in core.CdistObject.list_objects(self.local.object_path,
 | 
					        for cdist_object in core.CdistObject.list_objects(self.local.object_path,
 | 
				
			||||||
                                                         self.local.type_path):
 | 
					                                                         self.local.type_path):
 | 
				
			||||||
 | 
					            if cdist_object.cdist_type.is_install:
 | 
				
			||||||
 | 
					                self.log.debug("Running in config mode, ignoring install object: {0}".format(cdist_object))
 | 
				
			||||||
 | 
					            else:
 | 
				
			||||||
                yield cdist_object
 | 
					                yield cdist_object
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    def iterate_once(self):
 | 
					    def iterate_once(self):
 | 
				
			||||||
        """
 | 
					        """
 | 
				
			||||||
            Iterate over the objects once - helper method for 
 | 
					            Iterate over the objects once - helper method for 
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -2,6 +2,7 @@
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
# 2011 Steven Armstrong (steven-cdist at armstrong.cc)
 | 
					# 2011 Steven Armstrong (steven-cdist at armstrong.cc)
 | 
				
			||||||
# 2011-2013 Nico Schottelius (nico-cdist at schottelius.org)
 | 
					# 2011-2013 Nico Schottelius (nico-cdist at schottelius.org)
 | 
				
			||||||
 | 
					# 2014 Daniel Heule (hda at sfs.biz)
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
# This file is part of cdist.
 | 
					# This file is part of cdist.
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
| 
						 | 
					@ -211,13 +212,13 @@ class CdistObject(object):
 | 
				
			||||||
        """Checks wether this cdist object exists on the file systems."""
 | 
					        """Checks wether this cdist object exists on the file systems."""
 | 
				
			||||||
        return os.path.exists(self.absolute_path)
 | 
					        return os.path.exists(self.absolute_path)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    def create(self):
 | 
					    def create(self, allow_overwrite=False):
 | 
				
			||||||
        """Create this cdist object on the filesystem.
 | 
					        """Create this cdist object on the filesystem.
 | 
				
			||||||
        """
 | 
					        """
 | 
				
			||||||
        try:
 | 
					        try:
 | 
				
			||||||
            os.makedirs(self.absolute_path, exist_ok=False)
 | 
					            os.makedirs(self.absolute_path, exist_ok=allow_overwrite)
 | 
				
			||||||
            absolute_parameter_path = os.path.join(self.base_path, self.parameter_path)
 | 
					            absolute_parameter_path = os.path.join(self.base_path, self.parameter_path)
 | 
				
			||||||
            os.makedirs(absolute_parameter_path, exist_ok=False)
 | 
					            os.makedirs(absolute_parameter_path, exist_ok=allow_overwrite)
 | 
				
			||||||
        except EnvironmentError as error:
 | 
					        except EnvironmentError as error:
 | 
				
			||||||
            raise cdist.Error('Error creating directories for cdist object: %s: %s' % (self, error))
 | 
					            raise cdist.Error('Error creating directories for cdist object: %s: %s' % (self, error))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -101,6 +101,11 @@ class CdistType(object):
 | 
				
			||||||
        """Check whether a type is a singleton."""
 | 
					        """Check whether a type is a singleton."""
 | 
				
			||||||
        return os.path.isfile(os.path.join(self.absolute_path, "singleton"))
 | 
					        return os.path.isfile(os.path.join(self.absolute_path, "singleton"))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    @property
 | 
				
			||||||
 | 
					    def is_install(self):
 | 
				
			||||||
 | 
					        """Check whether a type is used for installation (if not: for configuration)"""
 | 
				
			||||||
 | 
					        return os.path.isfile(os.path.join(self.absolute_path, "install"))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    @property
 | 
					    @property
 | 
				
			||||||
    def explorers(self):
 | 
					    def explorers(self):
 | 
				
			||||||
        """Return a list of available explorers"""
 | 
					        """Return a list of available explorers"""
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -2,6 +2,7 @@
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
# 2011-2013 Nico Schottelius (nico-cdist at schottelius.org)
 | 
					# 2011-2013 Nico Schottelius (nico-cdist at schottelius.org)
 | 
				
			||||||
# 2012 Steven Armstrong (steven-cdist at armstrong.cc)
 | 
					# 2012 Steven Armstrong (steven-cdist at armstrong.cc)
 | 
				
			||||||
 | 
					# 2014 Daniel Heule (hda at sfs.biz)
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
# This file is part of cdist.
 | 
					# This file is part of cdist.
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
| 
						 | 
					@ -145,11 +146,15 @@ class Emulator(object):
 | 
				
			||||||
            if value is not None:
 | 
					            if value is not None:
 | 
				
			||||||
                self.parameters[key] = value
 | 
					                self.parameters[key] = value
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        if self.cdist_object.exists:
 | 
					        if self.cdist_object.exists and not 'CDIST_ALLOW_OVERRIDE' in os.environ:
 | 
				
			||||||
            if self.cdist_object.parameters != self.parameters:
 | 
					            if self.cdist_object.parameters != self.parameters:
 | 
				
			||||||
                raise cdist.Error("Object %s already exists with conflicting parameters:\n%s: %s\n%s: %s"
 | 
					                raise cdist.Error("Object %s already exists with conflicting parameters:\n%s: %s\n%s: %s"
 | 
				
			||||||
                    % (self.cdist_object.name, " ".join(self.cdist_object.source), self.cdist_object.parameters, self.object_source, self.parameters)
 | 
					                    % (self.cdist_object.name, " ".join(self.cdist_object.source), self.cdist_object.parameters, self.object_source, self.parameters)
 | 
				
			||||||
            )
 | 
					            )
 | 
				
			||||||
 | 
					        else:
 | 
				
			||||||
 | 
					            if self.cdist_object.exists:
 | 
				
			||||||
 | 
					                self.log.debug('Object %s override forced with CDIST_ALLOW_OVERRIDE',self.cdist_object.name)
 | 
				
			||||||
 | 
					                self.cdist_object.create(True)
 | 
				
			||||||
            else:
 | 
					            else:
 | 
				
			||||||
                self.cdist_object.create()
 | 
					                self.cdist_object.create()
 | 
				
			||||||
            self.cdist_object.parameters = self.parameters
 | 
					            self.cdist_object.parameters = self.parameters
 | 
				
			||||||
| 
						 | 
					@ -214,9 +219,11 @@ class Emulator(object):
 | 
				
			||||||
                try:
 | 
					                try:
 | 
				
			||||||
                    cdist_object = self.cdist_object.object_from_name(requirement)
 | 
					                    cdist_object = self.cdist_object.object_from_name(requirement)
 | 
				
			||||||
                except core.cdist_type.NoSuchTypeError as e:
 | 
					                except core.cdist_type.NoSuchTypeError as e:
 | 
				
			||||||
                    self.log.error("%s requires object %s, but type %s does not exist (definded at %s)"  % (self.cdist_object.name, requirement, e.name, self.object_source))
 | 
					                    self.log.error("%s requires object %s, but type %s does not exist. Defined at %s"  % (self.cdist_object.name, requirement, e.name, self.object_source))
 | 
				
			||||||
 | 
					                    raise
 | 
				
			||||||
 | 
					                except core.cdist_object.MissingObjectIdError as e:
 | 
				
			||||||
 | 
					                    self.log.error("%s requires object %s without object id. Defined at %s"  % (self.cdist_object.name, requirement, self.object_source))
 | 
				
			||||||
                    raise
 | 
					                    raise
 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
                self.log.debug("Recording requirement: %s", requirement)
 | 
					                self.log.debug("Recording requirement: %s", requirement)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -188,7 +188,7 @@ class Local(object):
 | 
				
			||||||
        Return the output as a string.
 | 
					        Return the output as a string.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        """
 | 
					        """
 | 
				
			||||||
        command = ["/bin/sh", "-e"]
 | 
					        command = [ os.environ.get('CDIST_LOCAL_SHELL',"/bin/sh") , "-e"]
 | 
				
			||||||
        command.append(script)
 | 
					        command.append(script)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        return self.run(command=command, env=env, return_output=return_output, message_prefix=message_prefix)
 | 
					        return self.run(command=command, env=env, return_output=return_output, message_prefix=message_prefix)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -113,7 +113,7 @@ class Remote(object):
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        """
 | 
					        """
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        command = ["/bin/sh", "-e"]
 | 
					        command = [ os.environ.get('CDIST_REMOTE_SHELL',"/bin/sh") , "-e"]
 | 
				
			||||||
        command.append(script)
 | 
					        command.append(script)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        return self.run(command, env, return_output)
 | 
					        return self.run(command, env, return_output)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -45,10 +45,7 @@ class Shell(object):
 | 
				
			||||||
        """Select shell to execute, if not specified by user"""
 | 
					        """Select shell to execute, if not specified by user"""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        if not self.shell:
 | 
					        if not self.shell:
 | 
				
			||||||
            if 'SHELL' in os.environ:
 | 
					            self.shell = os.environ.get('SHELL',"/bin/sh")
 | 
				
			||||||
                self.shell = os.environ['SHELL']
 | 
					 | 
				
			||||||
            else:
 | 
					 | 
				
			||||||
                self.shell = "/bin/sh"
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    def _init_files_dirs(self):
 | 
					    def _init_files_dirs(self):
 | 
				
			||||||
        self.local.create_files_dirs()
 | 
					        self.local.create_files_dirs()
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -4,11 +4,48 @@ Changelog
 | 
				
			||||||
	* Changes are always commented with their author in (braces)
 | 
						* Changes are always commented with their author in (braces)
 | 
				
			||||||
	* Exception: No braces means author == Nico Schottelius
 | 
						* Exception: No braces means author == Nico Schottelius
 | 
				
			||||||
 | 
					
 | 
				
			||||||
3.0.2:
 | 
					
 | 
				
			||||||
 | 
					3.0.6:
 | 
				
			||||||
 | 
						* New Type: __apt_key (Steven Armstrong)
 | 
				
			||||||
 | 
						* New Type: __apt_key_uri (Steven Armstrong)
 | 
				
			||||||
 | 
						* New Type: __apt_norecommends (Steven Armstrong)
 | 
				
			||||||
 | 
						* New Type: __apt_source (Steven Armstrong)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					3.0.5: 2014-02-05
 | 
				
			||||||
 | 
						* Core: Introduce override concept (Daniel Heule)
 | 
				
			||||||
 | 
						* Type __process: Make --state absent work (Steven Armstrong)
 | 
				
			||||||
 | 
						* Documentation: Update documentation for environment variables
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					3.0.4: 2014-01-29
 | 
				
			||||||
 | 
						* Core: Ignore install types in config mode
 | 
				
			||||||
 | 
						* Documentation: Update reference (files path in object space)
 | 
				
			||||||
 | 
						* Documentation: Update best practise: Replaces templates/ with files/
 | 
				
			||||||
 | 
						* Type __apt_ppa: Install required software (Steven Armstrong)
 | 
				
			||||||
 | 
						* Type __debconf_set_selections: Support --file - to read from stdin
 | 
				
			||||||
 | 
						* Type __jail: Fix jaildir parameter handling (Jake Guffey)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					3.0.3: 2014-01-22
 | 
				
			||||||
 | 
						* Core: Enhance error message when requirement is missing object id
 | 
				
			||||||
 | 
						* Core: Add environment variable to select shell for executing scripts (Daniel Heule)
 | 
				
			||||||
 | 
						* Explorer hostname: Return host name by using uname -n
 | 
				
			||||||
 | 
						* New Type: __hostname (Steven Armstrong)
 | 
				
			||||||
 | 
						* Type __cdist: Use default paremeters (Daniel Heule)
 | 
				
			||||||
 | 
						* Type __key_value: Use default paremeters (Daniel Heule)
 | 
				
			||||||
 | 
						* Type __line: Use printf instead of echo for printing user input
 | 
				
			||||||
 | 
						* Type __qemu_img: Use default paremeters (Daniel Heule)
 | 
				
			||||||
 | 
						* Type __zypper_repo: Use default paremeters (Daniel Heule)
 | 
				
			||||||
 | 
						* Type __zypper_service: Use default paremeters (Daniel Heule)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					3.0.2: 2014-01-19
 | 
				
			||||||
	* Documentation: Document all messages sent by types (Daniel Heule)
 | 
						* Documentation: Document all messages sent by types (Daniel Heule)
 | 
				
			||||||
	* New Type: __block (Steven Armstrong)
 | 
						* New Type: __block (Steven Armstrong)
 | 
				
			||||||
	* New Type: __mount (Steven Armstrong)
 | 
						* New Type: __mount (Steven Armstrong)
 | 
				
			||||||
	* Type __cron: Replace existing entry when changing it (Daniel Heule)
 | 
						* Type __cron: Replace existing entry when changing it (Daniel Heule)
 | 
				
			||||||
 | 
						* Type __ssh_authorized_keys: Use new type __block (Steven Armstrong)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
3.0.1: 2014-01-14
 | 
					3.0.1: 2014-01-14
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
							
								
								
									
										44
									
								
								docs/dev/logs/2014-01-20.environments
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										44
									
								
								docs/dev/logs/2014-01-20.environments
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1,44 @@
 | 
				
			||||||
 | 
					raw quote from irc
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					16:00 < sar> telmich: btw, ich denke nicht dass man install schon zu gross bewerben 
 | 
				
			||||||
 | 
					             sollte
 | 
				
			||||||
 | 
					16:00 < telmich> sar: ack
 | 
				
			||||||
 | 
					16:00 < sar> telmich: imho sollten wir erst die cdist environments implementieren, 
 | 
				
			||||||
 | 
					             install waere dann eines davon
 | 
				
			||||||
 | 
					16:00 < sar> config ein anderes
 | 
				
			||||||
 | 
					16:01 < sar> foobar noch ein anderes
 | 
				
			||||||
 | 
					16:01 < sar> es macht einfach keinen sinn auf type ebene install vs nicht-install zu 
 | 
				
			||||||
 | 
					             unterscheiden
 | 
				
			||||||
 | 
					16:02 < telmich> sar: environments sind bei mir noch nicht ganz im gehirn (ganicht?) 
 | 
				
			||||||
 | 
					                 angelangt - hast du (nochmal?) kurz eine idee, was du damit meinst?
 | 
				
			||||||
 | 
					16:02 < sar> telmich: wenn man cdist anschaut, dann macht es eigentlich folgendes:
 | 
				
			||||||
 | 
					16:03 < sar> - definiere objekte mit hilfe von types
 | 
				
			||||||
 | 
					16:03 < sar> - deps zwischen objekten
 | 
				
			||||||
 | 
					16:03 < sar> - queue von objekten abarbeiten und auf $etwas anwenden
 | 
				
			||||||
 | 
					16:03 < sar> das ist alles
 | 
				
			||||||
 | 
					16:04 < sar> telmich: das ist eigentlich ziemlich generisch
 | 
				
			||||||
 | 
					16:04 < sar> telmich: fuer mich wuerde es sich hier anbieten das auch so zu 
 | 
				
			||||||
 | 
					             abstrahieren
 | 
				
			||||||
 | 
					16:05 < sar> telmich: ein environment (nenn das mal so weil kein besserer name zzt) 
 | 
				
			||||||
 | 
					             koennte das wie $objekt auf $etwas bestimmen
 | 
				
			||||||
 | 
					16:05 < sar> telmich: und auch was fuer types es in diesem environment gibt
 | 
				
			||||||
 | 
					16:06 < telmich> sar: klingt gut
 | 
				
			||||||
 | 
					16:06 < sar> telmich: e.g. es gibt ein environment fuer config -> was wir jetzt haben
 | 
				
			||||||
 | 
					16:06 < sar> eins fuer install -> += was im install branch ist (nur die types), den 
 | 
				
			||||||
 | 
					             python code brauchts nacher nicht mehr
 | 
				
			||||||
 | 
					16:07 < sar> eins fuer cisco-switch -> hat types um mit cisco zu spielen
 | 
				
			||||||
 | 
					16:07 < sar> usw
 | 
				
			||||||
 | 
					16:07 < sar> ein environment hat auch eigene remote-{exec,copy} scripte
 | 
				
			||||||
 | 
					16:08 < sar> und vielleicht globale explorer, vielleicht auch nicht
 | 
				
			||||||
 | 
					16:08 < sar> ein enviroment ist ein cconfig style directory
 | 
				
			||||||
 | 
					16:09 < sar> wo man cdist drueber laufen laesst
 | 
				
			||||||
 | 
					16:09 < sar> so was in der art
 | 
				
			||||||
 | 
					16:13 < telmich> sar: hmmja...klingt gut
 | 
				
			||||||
 | 
					16:15 < telmich> vielleicht etwas für cdist 4 oder cdist 5 :-)
 | 
				
			||||||
 | 
					16:15 < telmich> aber ich denke auf jeden fall als grundgedanke behaltbar
 | 
				
			||||||
 | 
					16:16 < telmich> ok für dich, wenn ich den chat ins docs/dev/logs kopiere als 
 | 
				
			||||||
 | 
					                 erinnerungs
 | 
				
			||||||
 | 
					16:16 < telmich> s/s$/?/?
 | 
				
			||||||
 | 
					16:16 < telmich> s/?$//
 | 
				
			||||||
 | 
					16:20 < sar> klar
 | 
				
			||||||
 | 
					
 | 
				
			||||||
							
								
								
									
										
											BIN
										
									
								
								docs/gfx/cdist-logo-1024-scaled.png
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								docs/gfx/cdist-logo-1024-scaled.png
									
										
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| 
		 After Width: | Height: | Size: 2.5 KiB  | 
| 
						 | 
					@ -131,7 +131,8 @@ confdir/type/<name>/explorer::
 | 
				
			||||||
 | 
					
 | 
				
			||||||
confdir/type/<name>/files::
 | 
					confdir/type/<name>/files::
 | 
				
			||||||
    This directory is reserved for user data and will not be used
 | 
					    This directory is reserved for user data and will not be used
 | 
				
			||||||
    by cdist at any time
 | 
					    by cdist at any time. It can be used for storing supplementary
 | 
				
			||||||
 | 
					    files (like scripts to act as a template or configuration files).
 | 
				
			||||||
 | 
					
 | 
				
			||||||
out/::
 | 
					out/::
 | 
				
			||||||
    This directory contains output of cdist and is usually located
 | 
					    This directory contains output of cdist and is usually located
 | 
				
			||||||
| 
						 | 
					@ -175,13 +176,22 @@ OBJECTS
 | 
				
			||||||
For object to object communication and tests, the following paths are
 | 
					For object to object communication and tests, the following paths are
 | 
				
			||||||
usable within a object directory:
 | 
					usable within a object directory:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					files::
 | 
				
			||||||
 | 
					    This directory is reserved for user data and will not be used
 | 
				
			||||||
 | 
					    by cdist at any time. It can be used freely by the type 
 | 
				
			||||||
 | 
					    (for instance to store template results).
 | 
				
			||||||
changed::
 | 
					changed::
 | 
				
			||||||
    This empty file exists in an object directory, if the object has
 | 
					    This empty file exists in an object directory, if the object has
 | 
				
			||||||
    code to be excuted (either remote or local)
 | 
					    code to be excuted (either remote or local)
 | 
				
			||||||
 | 
					stdin::
 | 
				
			||||||
 | 
					    This file exists and contains data, if data was provided on stdin 
 | 
				
			||||||
 | 
					    when the type was called.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
ENVIRONMENT VARIABLES
 | 
					ENVIRONMENT VARIABLES (FOR READING)
 | 
				
			||||||
---------------------
 | 
					-----------------------------------
 | 
				
			||||||
 | 
					The following environment variables are exported by cdist:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
__explorer::
 | 
					__explorer::
 | 
				
			||||||
    Directory that contains all global explorers.
 | 
					    Directory that contains all global explorers.
 | 
				
			||||||
    Available for: initial manifest, explorer, type explorer, shell
 | 
					    Available for: initial manifest, explorer, type explorer, shell
 | 
				
			||||||
| 
						 | 
					@ -219,6 +229,15 @@ __type_explorer::
 | 
				
			||||||
    Directory that contains the type explorers.
 | 
					    Directory that contains the type explorers.
 | 
				
			||||||
    Available for: type explorer
 | 
					    Available for: type explorer
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					ENVIRONMENT VARIABLES (FOR WRITING)
 | 
				
			||||||
 | 
					-----------------------------------
 | 
				
			||||||
 | 
					The following environment variables influence the behaviour of cdist:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					require::
 | 
				
			||||||
 | 
					    Setup dependencies between objects (see cdist-manifest(7))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					CDIST_ALLOW_OVERRIDE::
 | 
				
			||||||
 | 
					    Allow overwriting type parameters (see cdist-manifest(7))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
SEE ALSO
 | 
					SEE ALSO
 | 
				
			||||||
--------
 | 
					--------
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -132,6 +132,12 @@ TMPDIR, TEMP, TMP::
 | 
				
			||||||
    more information. This is rather useful, if the standard
 | 
					    more information. This is rather useful, if the standard
 | 
				
			||||||
    directory used does not allow executables.
 | 
					    directory used does not allow executables.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					CDIST_LOCAL_SHELL::
 | 
				
			||||||
 | 
					    Selects shell for local script execution, defaults to /bin/sh
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					CDIST_REMOTE_SHELL::
 | 
				
			||||||
 | 
					    Selects shell for remote scirpt execution, defaults to /bin/sh
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
EXIT STATUS
 | 
					EXIT STATUS
 | 
				
			||||||
-----------
 | 
					-----------
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -164,8 +164,8 @@ For more details consult sudoers(5)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
TEMPLATING
 | 
					TEMPLATING
 | 
				
			||||||
----------
 | 
					----------
 | 
				
			||||||
* create directory templates/ in your type (convention)
 | 
					* create directory files/ in your type (convention)
 | 
				
			||||||
* create the template as an executable file like templates/basic.conf.sh, it will output text using shell variables for the values
 | 
					* create the template as an executable file like files/basic.conf.sh, it will output text using shell variables for the values
 | 
				
			||||||
 | 
					
 | 
				
			||||||
--------------------------------------------------------------------------------
 | 
					--------------------------------------------------------------------------------
 | 
				
			||||||
#!/bin/sh
 | 
					#!/bin/sh
 | 
				
			||||||
| 
						 | 
					@ -191,7 +191,7 @@ EOF
 | 
				
			||||||
  export ROOT='/var/www/test'
 | 
					  export ROOT='/var/www/test'
 | 
				
			||||||
# render the template
 | 
					# render the template
 | 
				
			||||||
  mkdir -p "$__object/files"
 | 
					  mkdir -p "$__object/files"
 | 
				
			||||||
  "$__type/templates/basic.conf.sh" > "$__object/files/basic.conf"
 | 
					  "$__type/files/basic.conf.sh" > "$__object/files/basic.conf"
 | 
				
			||||||
# send the rendered template
 | 
					# send the rendered template
 | 
				
			||||||
  __file /etc/nginx/sites-available/test.conf  \
 | 
					  __file /etc/nginx/sites-available/test.conf  \
 | 
				
			||||||
    --state present
 | 
					    --state present
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -128,6 +128,19 @@ All objects that are created in a type manifest are automatically required
 | 
				
			||||||
from the type that is calling them. This is called "autorequirement" in
 | 
					from the type that is calling them. This is called "autorequirement" in
 | 
				
			||||||
cdist jargon.
 | 
					cdist jargon.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					OVERRIDES
 | 
				
			||||||
 | 
					---------
 | 
				
			||||||
 | 
					In some special cases, you would like to create an already defined object 
 | 
				
			||||||
 | 
					with different parameters. In normal situations this leads to an error in cdist.
 | 
				
			||||||
 | 
					If you whish, you can setup the environment variable CDIST_ALLOW_OVERRIDE
 | 
				
			||||||
 | 
					(any value or even empty is ok) to tell cdist, that this object override is 
 | 
				
			||||||
 | 
					wanted and should be accepted.
 | 
				
			||||||
 | 
					ATTENTION: Only use this feature if you are 100% sure in which order 
 | 
				
			||||||
 | 
					cdist encounter the affected objects, otherwhise this results 
 | 
				
			||||||
 | 
					into an undefined situation. 
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					THIS IS A BETA FEATURE AND MAY BE REMOVED AT ANY TIME.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
EXECUTE_TYPES_IN_CREATION_ORDER is a EXPERIMENTAL FEATURE !
 | 
					EXECUTE_TYPES_IN_CREATION_ORDER is a EXPERIMENTAL FEATURE !
 | 
				
			||||||
You can tell cdist to execute all types in the order in which they are created 
 | 
					You can tell cdist to execute all types in the order in which they are created 
 | 
				
			||||||
| 
						 | 
					@ -189,6 +202,26 @@ __package lighttpd --state present
 | 
				
			||||||
require="__package/lighttpd" __package munin --state present
 | 
					require="__package/lighttpd" __package munin --state present
 | 
				
			||||||
--------------------------------------------------------------------------------
 | 
					--------------------------------------------------------------------------------
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					How to override objects:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					--------------------------------------------------------------------------------
 | 
				
			||||||
 | 
					# for example in the inital manifest
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# reate user account foobar with some hash for password
 | 
				
			||||||
 | 
					__user foobar --password 'some_fancy_hash' --home /home/foobarexample
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# ... many statements and includes in the manifest later ...
 | 
				
			||||||
 | 
					# somewhere in a conditionaly sourced manifest 
 | 
				
			||||||
 | 
					# (e.g. for example only sourced if a special application is on the target host)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# this leads to an error ...
 | 
				
			||||||
 | 
					__user foobar --password 'some_other_hash' 
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# this tells cdist, that you know that this is an override and should be accepted
 | 
				
			||||||
 | 
					CDIST_ALLOW_OVERRIDE=yes __user foobar --password 'some_other_hash'
 | 
				
			||||||
 | 
					# its only an override, means the parameter --home is not touched 
 | 
				
			||||||
 | 
					# and stay at the original value of /home/foobarexample
 | 
				
			||||||
 | 
					--------------------------------------------------------------------------------
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
SEE ALSO
 | 
					SEE ALSO
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue