forked from ungleich-public/cdist
redo commit due to broken .git repo
Signed-off-by: Nico Schottelius <nico@brief.schottelius.org>
This commit is contained in:
parent
50ce206212
commit
e5b3081b9f
4 changed files with 31 additions and 5 deletions
26
README
26
README
|
@ -90,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
|
||||||
|
|
||||||
|
@ -101,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
|
||||||
|
|
||||||
|
|
6
build
6
build
|
@ -97,6 +97,12 @@ case "$1" in
|
||||||
done
|
done
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
webmain)
|
||||||
|
cp README ${WEBPAGE}
|
||||||
|
cd ${WEBDIR} && git commit -m "cdist update" ${WEBPAGE}
|
||||||
|
cd ${WEBDIR} && make pub
|
||||||
|
;;
|
||||||
|
|
||||||
web)
|
web)
|
||||||
cp README ${WEBPAGE}
|
cp README ${WEBPAGE}
|
||||||
rm -rf ${WEBMAN}
|
rm -rf ${WEBMAN}
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
2.0.5:
|
2.0.5:
|
||||||
* New Type: __package_luarocks (Christian G. Warden)
|
* New Type: __package_luarocks (Christian G. Warden)
|
||||||
|
* New Type: __cdistmarker (Daniel Maher)
|
||||||
* Feature: __addifnosuchline supports matching on
|
* Feature: __addifnosuchline supports matching on
|
||||||
regular expressions (Daniel Maher)
|
regular expressions (Daniel Maher)
|
||||||
* Documentation: (Re)write of the tutorial
|
* Documentation: (Re)write of the tutorial
|
||||||
|
|
|
@ -30,7 +30,8 @@ NetBSD:
|
||||||
python 3.1.4
|
python 3.1.4
|
||||||
|
|
||||||
OpenBSD:
|
OpenBSD:
|
||||||
python 3.2? (empty ports dir)
|
2.7.1 on -current
|
||||||
|
2.5 & 3.2 maintained in ports
|
||||||
|
|
||||||
OpenSuse [supported since 2011-11]
|
OpenSuse [supported since 2011-11]
|
||||||
11.4: python3-3.1.3-3.3.x86_64.rpm
|
11.4: python3-3.1.3-3.3.x86_64.rpm
|
||||||
|
|
Loading…
Reference in a new issue