forked from ungleich-public/cdist
Merge remote-tracking branch 'telmich/master'
This commit is contained in:
commit
23bcb018c5
6 changed files with 8721 additions and 0 deletions
2
doc/dev/logs/2011-04-20.slashdot-articles
Normal file
2
doc/dev/logs/2011-04-20.slashdot-articles
Normal file
|
@ -0,0 +1,2 @@
|
|||
http://slashdot.org/submission/1533922/cdist-162---usable-configuration-management
|
||||
http://slashdot.org/submission/1522134/Cdist-Configuration-management-that-makes-fun#
|
7
doc/dev/logs/2011-04-21.benchmark-eth
Normal file
7
doc/dev/logs/2011-04-21.benchmark-eth
Normal file
|
@ -0,0 +1,7 @@
|
|||
cdist-mass-deploy -p ikq02.ethz.ch; 142
|
||||
cdist-mass-deploy -p ikq02.ethz.ch ikq03.ethz.ch; 194
|
||||
cdist-mass-deploy -p ikq02.ethz.ch ikq03.ethz.ch ikq04.ethz.ch; 271
|
||||
cdist-mass-deploy -p ikq02.ethz.ch ikq03.ethz.ch ikq04.ethz.ch ikq05.ethz.ch; 328
|
||||
cdist-mass-deploy -p ikq02.ethz.ch ikq03.ethz.ch ikq04.ethz.ch ikq05.ethz.ch ikq06.ethz.ch; 456
|
||||
cdist-mass-deploy -p ikq02.ethz.ch ikq03.ethz.ch ikq04.ethz.ch ikq05.ethz.ch ikq06.ethz.ch ikq07.ethz.ch; 568
|
||||
|
1725
doc/dev/logs/2011-04-27.debug-timing
Normal file
1725
doc/dev/logs/2011-04-27.debug-timing
Normal file
File diff suppressed because it is too large
Load diff
6960
doc/dev/logs/2011-09-12.benchmark-home
Normal file
6960
doc/dev/logs/2011-09-12.benchmark-home
Normal file
File diff suppressed because it is too large
Load diff
|
@ -0,0 +1,27 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# 2011 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/>.
|
||||
#
|
||||
#
|
||||
|
||||
import os
|
||||
|
||||
cdist_base_path = os.path.abspath(
|
||||
os.path.join(os.path.dirname(os.path.realpath(__file__)), "../../../"))
|
||||
|
||||
cdist_exec_path = os.path.join(cdist_base_path, "bin/cdist")
|
Loading…
Reference in a new issue