update manpage for __package_yum

Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
Nico Schottelius 2011-04-02 02:26:42 +02:00
parent c532a2ccd3
commit 13f4140b3d

View file

@ -1,17 +1,16 @@
cdist-type__package_pacman(7) cdist-type__package_yum(7)
============================= ==========================
Nico Schottelius <nico-cdist--@--schottelius.org> Nico Schottelius <nico-cdist--@--schottelius.org>
NAME NAME
---- ----
cdist-type__package_pacman - Manage packages with pacman cdist-type__package_yum - Manage packages with yum
DESCRIPTION DESCRIPTION
----------- -----------
Pacman is usually used on the Archlinux distribution to manage Yum is usually used on the Fedora distribution to manage packages.
packages.
REQUIRED PARAMETERS REQUIRED PARAMETERS
@ -31,13 +30,13 @@ EXAMPLES
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
# Ensure zsh in installed # Ensure zsh in installed
__package_pacman zsh --state installed __package_yum zsh --state installed
# If you don't want to follow pythonX packages, but always use python # If you don't want to follow pythonX packages, but always use python
__package_pacman python --state installed --name python2 __package_yum python --state installed --name python2
# Remove obsolete package # Remove obsolete package
__package_pacman puppet --state deinstalled __package_yum puppet --state deinstalled
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------