Merge branch 'master' into type-emulator
This commit is contained in:
commit
3faf56cb04
5 changed files with 1454 additions and 2 deletions
|
@ -183,6 +183,8 @@ class Cdist:
|
||||||
script_fd.close()
|
script_fd.close()
|
||||||
|
|
||||||
self.exit_error("Command failed (shell): " + " ".join(*args))
|
self.exit_error("Command failed (shell): " + " ".join(*args))
|
||||||
|
except OSError as error:
|
||||||
|
self.exit_error(" ".join(*args) + ": " + error.args[1])
|
||||||
|
|
||||||
def run_or_fail(self, *args, **kargs):
|
def run_or_fail(self, *args, **kargs):
|
||||||
if "remote" in kargs:
|
if "remote" in kargs:
|
||||||
|
@ -196,6 +198,9 @@ class Cdist:
|
||||||
subprocess.check_call(*args, **kargs)
|
subprocess.check_call(*args, **kargs)
|
||||||
except subprocess.CalledProcessError:
|
except subprocess.CalledProcessError:
|
||||||
self.exit_error("Command failed: " + " ".join(*args))
|
self.exit_error("Command failed: " + " ".join(*args))
|
||||||
|
except OSError as error:
|
||||||
|
self.exit_error(" ".join(*args) + ": " + error.args[1])
|
||||||
|
|
||||||
|
|
||||||
def remove_remote_dir(self, destination):
|
def remove_remote_dir(self, destination):
|
||||||
self.run_or_fail(["rm", "-rf", destination], remote=True)
|
self.run_or_fail(["rm", "-rf", destination], remote=True)
|
||||||
|
|
|
@ -1,6 +1,9 @@
|
||||||
2.0.0:
|
2.0.1:
|
||||||
|
* Bugfix cdist: Always print source of error in case of exec errors
|
||||||
|
|
||||||
|
2.0.0: 2011-09-16
|
||||||
* New Type: __package_rubygem (Chase Allen James)
|
* New Type: __package_rubygem (Chase Allen James)
|
||||||
* __self replaced by __object_fq (or so)
|
* __self replaced by __object_fq
|
||||||
* Rewrote cdist in Python
|
* Rewrote cdist in Python
|
||||||
|
|
||||||
1.7.1: 2011-07-26
|
1.7.1: 2011-07-26
|
||||||
|
|
63
doc/dev/logs/2011-09-16.benchmark-r815-no-control-socket
Normal file
63
doc/dev/logs/2011-09-16.benchmark-r815-no-control-socket
Normal file
|
@ -0,0 +1,63 @@
|
||||||
|
48 core
|
||||||
|
model name : AMD Opteron(tm) Processor 6174
|
||||||
|
128 GB RAM
|
||||||
|
Dell PowerEdge R815
|
||||||
|
|
||||||
|
root@sgs-r815-01:~/cdist-nutzung# grep "Total processing time for" deploy-all-benchmark-noikr13
|
||||||
|
INFO: Total processing time for 1 host(s): 257.641541
|
||||||
|
INFO: Total processing time for 2 host(s): 257.025783
|
||||||
|
INFO: Total processing time for 3 host(s): 258.933088
|
||||||
|
INFO: Total processing time for 4 host(s): 259.253074
|
||||||
|
INFO: Total processing time for 5 host(s): 260.331896
|
||||||
|
INFO: Total processing time for 6 host(s): 262.051349
|
||||||
|
INFO: Total processing time for 7 host(s): 323.820878
|
||||||
|
INFO: Total processing time for 8 host(s): 329.081856
|
||||||
|
INFO: Total processing time for 9 host(s): 333.346278
|
||||||
|
INFO: Total processing time for 10 host(s): 334.832419
|
||||||
|
INFO: Total processing time for 11 host(s): 330.572375
|
||||||
|
INFO: Total processing time for 12 host(s): 331.726628
|
||||||
|
INFO: Total processing time for 13 host(s): 331.740591
|
||||||
|
INFO: Total processing time for 14 host(s): 331.237139
|
||||||
|
INFO: Total processing time for 15 host(s): 331.718861
|
||||||
|
INFO: Total processing time for 16 host(s): 332.374645
|
||||||
|
INFO: Total processing time for 17 host(s): 331.510445
|
||||||
|
INFO: Total processing time for 18 host(s): 332.030743
|
||||||
|
INFO: Total processing time for 19 host(s): 332.193198
|
||||||
|
INFO: Total processing time for 20 host(s): 333.933765
|
||||||
|
INFO: Total processing time for 21 host(s): 335.292953
|
||||||
|
INFO: Total processing time for 22 host(s): 337.253608
|
||||||
|
INFO: Total processing time for 23 host(s): 337.831493
|
||||||
|
INFO: Total processing time for 24 host(s): 339.024737
|
||||||
|
INFO: Total processing time for 25 host(s): 343.515044
|
||||||
|
INFO: Total processing time for 26 host(s): 339.759678
|
||||||
|
INFO: Total processing time for 27 host(s): 339.378998
|
||||||
|
INFO: Total processing time for 28 host(s): 339.640378
|
||||||
|
INFO: Total processing time for 29 host(s): 340.885614
|
||||||
|
INFO: Total processing time for 30 host(s): 341.836923
|
||||||
|
INFO: Total processing time for 31 host(s): 343.825758
|
||||||
|
INFO: Total processing time for 32 host(s): 344.176089
|
||||||
|
INFO: Total processing time for 33 host(s): 345.408518
|
||||||
|
INFO: Total processing time for 34 host(s): 347.15322
|
||||||
|
INFO: Total processing time for 35 host(s): 351.330649
|
||||||
|
INFO: Total processing time for 36 host(s): 347.640758
|
||||||
|
INFO: Total processing time for 37 host(s): 347.381126
|
||||||
|
INFO: Total processing time for 38 host(s): 347.053406
|
||||||
|
INFO: Total processing time for 39 host(s): 347.453166
|
||||||
|
INFO: Total processing time for 40 host(s): 347.84804
|
||||||
|
INFO: Total processing time for 41 host(s): 349.035272
|
||||||
|
INFO: Total processing time for 42 host(s): 349.41507
|
||||||
|
INFO: Total processing time for 43 host(s): 351.208072
|
||||||
|
INFO: Total processing time for 44 host(s): 351.788401
|
||||||
|
INFO: Total processing time for 45 host(s): 351.730259
|
||||||
|
INFO: Total processing time for 46 host(s): 515.693497
|
||||||
|
INFO: Total processing time for 47 host(s): 352.702677
|
||||||
|
INFO: Total processing time for 48 host(s): 353.418003
|
||||||
|
INFO: Total processing time for 49 host(s): 355.07111
|
||||||
|
INFO: Total processing time for 50 host(s): 354.622388
|
||||||
|
INFO: Total processing time for 51 host(s): 355.192521
|
||||||
|
INFO: Total processing time for 52 host(s): 355.283238
|
||||||
|
INFO: Total processing time for 53 host(s): 358.112329
|
||||||
|
INFO: Total processing time for 54 host(s): 357.717426
|
||||||
|
INFO: Total processing time for 55 host(s): 357.748707
|
||||||
|
INFO: Total processing time for 56 host(s): 358.902118
|
||||||
|
INFO: Total processing time for 57 host(s): 367.817594
|
1373
doc/dev/logs/2011-09-16.benchmark-r815-no-control-socket.dmidecode
Normal file
1373
doc/dev/logs/2011-09-16.benchmark-r815-no-control-socket.dmidecode
Normal file
File diff suppressed because it is too large
Load diff
|
@ -82,6 +82,14 @@ cdist --version
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
|
ENVIRONMENT
|
||||||
|
-----------
|
||||||
|
TMP::
|
||||||
|
Setup the base directory for the temporary directory.
|
||||||
|
See http://docs.python.org/py3k/library/tempfile.html for
|
||||||
|
more information. This is rather useful, if the standard
|
||||||
|
directory used does not allow executables.
|
||||||
|
|
||||||
SEE ALSO
|
SEE ALSO
|
||||||
--------
|
--------
|
||||||
- cdist(7)
|
- cdist(7)
|
||||||
|
|
Loading…
Reference in a new issue