puppet's timings are way off
root@bob:~# time !!
time puppet apply cm/debian-cd.p
Notice: Compiled catalog for bob in environment production in 0.01 seconds
Notice: Applied catalog in 0.01 seconds
real 0m0.853s
The 0.01 and 0.01, implying a total of 0.02s, are from puppet(8). 0.02s is below the bound for instant interaction, roughly 0.08s.
The 0.85s is from time (for some reason here a bash shell builtin), and is an order of magnitude longer than "instant interaction". Why does puppet lie about how long it takes, and why is this debug-type output printed by default anyway?
Comments
Post a Comment