cdist update
This commit is contained in:
parent
5bd14244c2
commit
63fcdda24b
1 changed files with 24 additions and 4 deletions
|
@ -61,12 +61,14 @@ cdist was tested or is know to run on at least
|
||||||
|
|
||||||
* [Archlinux](http://www.archlinux.org/)
|
* [Archlinux](http://www.archlinux.org/)
|
||||||
* [Debian](http://www.debian.org/)
|
* [Debian](http://www.debian.org/)
|
||||||
|
* [CentOS](http://www.centos.org/)
|
||||||
* [Fedora](http://fedoraproject.org/)
|
* [Fedora](http://fedoraproject.org/)
|
||||||
* [Gentoo](http://www.gentoo.org/)
|
* [Gentoo](http://www.gentoo.org/)
|
||||||
* [Mac OS X](http://www.apple.com/macosx/)
|
* [Mac OS X](http://www.apple.com/macosx/)
|
||||||
* [OpenBSD](http://www.openbsd.org)
|
* [OpenBSD](http://www.openbsd.org)
|
||||||
* [Redhat](http://www.redhat.com/)
|
* [Redhat](http://www.redhat.com/)
|
||||||
* [Ubuntu](http://www.ubuntu.com/)
|
* [Ubuntu](http://www.ubuntu.com/)
|
||||||
|
* [XenServer](http://www.citrix.com/xenserver/)
|
||||||
|
|
||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
|
@ -88,8 +90,8 @@ cdist was tested or is know to run on at least
|
||||||
|
|
||||||
### Preperation
|
### Preperation
|
||||||
|
|
||||||
Ensure you have Python 3.x and the **argparse** module installed on
|
Ensure you have Python 3.2 installed on the machine you use to **deploy to the targets**
|
||||||
the machine you use to **deploy to the targets**.
|
(the ***source host***).
|
||||||
|
|
||||||
#### Archlinux
|
#### Archlinux
|
||||||
|
|
||||||
|
@ -99,9 +101,27 @@ Archlinux already has python >= 3.2, so you only need to do:
|
||||||
|
|
||||||
#### Debian
|
#### Debian
|
||||||
|
|
||||||
aptitude install python3 python3-setuptools
|
For Debian >= wheezy:
|
||||||
easy_install3 argparse
|
|
||||||
|
|
||||||
|
aptitude install python3
|
||||||
|
|
||||||
|
For older Debian versions, installing python 3.2 manually is required.
|
||||||
|
|
||||||
|
#### Fedora
|
||||||
|
|
||||||
|
For Fedora >= 15:
|
||||||
|
|
||||||
|
yum install python3
|
||||||
|
|
||||||
|
#### FreeBSD
|
||||||
|
|
||||||
|
For the port:
|
||||||
|
|
||||||
|
cd /usr/ports/lang/python32/ && make install clean
|
||||||
|
|
||||||
|
For the package:
|
||||||
|
|
||||||
|
pkg_add -r python32
|
||||||
|
|
||||||
#### Gentoo
|
#### Gentoo
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue