s/Idempodency/Idempotency : 2 errors

>"Write a bash script to install something as idempodently as possible."

Idempotently would be allowing the install to be repeated on the same system without altered effect. "Repeatably" would be making sure that the same result was produced afterwards on different systems. I'm guessing the later is intended?
This commit is contained in:
pbhj 2015-04-22 21:04:25 +01:00
parent 7c4702e627
commit 2d4310edff

View File

@ -101,8 +101,8 @@ Do you need it? How much and why?
http://www.kitchensoap.com/2012/09/21/a-mature-role-for-automation-part-i/
* Talk basic theory and approach in terms of Idempodency and Convergence.
* Write a bash script to install something as idempodently as possible.
* Talk basic theory and approach in terms of Idempotency and Convergence.
* Write a bash script to install something as idempotently as possible.
* Discuss Chef and Puppet and while reflecting on the bash script.
Automation - Chef 201