Updated DEP 016 (markdown) authored by Ben Dalling's avatar Ben Dalling
......@@ -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,
...
......
......