Changes
Page history
Updated DEP 016 (markdown)
authored
Mar 08, 2016
by
Ben Dalling
Show whitespace changes
Inline
Side-by-side
DEP-016.md
View page @
f464b1dc
...
...
@@ -3,11 +3,16 @@
This will be in the following classes:
*
cassandra::opscenter
*
cassandra::opscenter::pycrypto
*
cassandra::optutils
Change code that looks like this:
```
puppet
class
{
'cassandra::opscenter::pycrypto'
:
ensure
=>
present
,
...
}
->
class
{
'cassandra::opscenter'
:
ensure
=>
$opscenter_version
,
...
...
...
@@ -22,6 +27,10 @@ class { 'cassandra::optutils':
To this:
```
puppet
class
{
'cassandra::opscenter::pycrypto'
:
package_ensure
=>
present
,
...
}
->
class
{
'cassandra::opscenter'
:
package_ensure
=>
$opscenter_version
,
...
...
...
...
...