diff --git a/software/cdist.mdwn b/software/cdist.mdwn index 26cd1ef2..e8f6e0bf 100644 --- a/software/cdist.mdwn +++ b/software/cdist.mdwn @@ -59,6 +59,7 @@ cdist was tested or is know to run on at least * [Archlinux](http://www.archlinux.org/) * [Debian](http://www.debian.org/) + * [Fedora](http://fedoraproject.org/) * [Gentoo](http://www.gentoo.org/) * [Mac OS X](http://www.apple.com/macosx/) * [OpenBSD](http://www.openbsd.org) diff --git a/software/cdist/man/cdist-reference.html b/software/cdist/man/cdist-reference.html index ca3964ed..30b352f9 100644 --- a/software/cdist/man/cdist-reference.html +++ b/software/cdist/man/cdist-reference.html @@ -1,6 +1,6 @@ -cdist-reference(7)

cdist-reference(7)


Table of Contents

1. NAME
2. DESCRIPTION
3. PATHS
4. TYPES
5. VARIABLES
6. SEE ALSO
7. COPYING

1. NAME

cdist-reference - Variable, path and type reference for cdist

2. DESCRIPTION

Various scripts which are not in the core need information on how +cdist-reference(7)

cdist-reference(7)


1. NAME

cdist-reference - Variable, path and type reference for cdist

2. DESCRIPTION

Various scripts which are not in the core need information on how to find information. This manpage summarises the available environment variables, types and paths and clearifies with part may access which variables.

3. PATHS

If not specified otherwise, all paths are relative to the checkout directory.

conf/ @@ -101,6 +101,12 @@ __apt_ppa.html
  • __apt_ppa.text
  • +__debconf_set_selections +
  • +__debconf_set_selections.html +
  • +__debconf_set_selections.text +
  • __directory
  • __directory.html @@ -243,6 +249,12 @@ cdist-type__apt_ppa.html(7)
  • cdist-type__apt_ppa.text(7)
  • +cdist-type__debconf_set_selections(7) +
  • +cdist-type__debconf_set_selections.html(7) +
  • +cdist-type__debconf_set_selections.text(7) +
  • cdist-type__directory(7)
  • cdist-type__directory.html(7) diff --git a/software/cdist/man/cdist-type__package_yum.html b/software/cdist/man/cdist-type__package_yum.html new file mode 100644 index 00000000..7b3dd71c --- /dev/null +++ b/software/cdist/man/cdist-type__package_yum.html @@ -0,0 +1,24 @@ + + +cdist-type__package_pacman(7)

    cdist-type__package_pacman(7)


    1. NAME

    cdist-type__package_pacman - Manage packages with pacman

    2. DESCRIPTION

    Pacman is usually used on the Archlinux distribution to manage +packages.

    3. REQUIRED PARAMETERS

    +state +
    + Either "installed" or "deinstalled". +

    4. OPTIONAL PARAMETERS

    +name +
    + If supplied, use the name and not the object id as the package name. +

    5. EXAMPLES

    # Ensure zsh in installed
    +__package_pacman zsh --state installed
    +
    +# If you don't want to follow pythonX packages, but always use python
    +__package_pacman python --state installed --name python2
    +
    +# Remove obsolete package
    +__package_pacman puppet --state deinstalled

    6. SEE ALSO

    • +cdist-type(7) +
    • +cdist-type__package(7) +

    7. COPYING

    Copyright (C) 2011 Nico Schottelius. Free use of this software is +granted under the terms of the GNU General Public License version 3 (GPLv3).