Skip to content

DEP 017

Ben Dalling edited this page May 6, 2016 · 1 revision

Removal of cassandra::env class

This is the removal of the class that is specific for the environment file in favour of using the generic cassandra::env class.

Replace code that looks like this:

class { 'cassandra::env':
  file_lines => {
    ...
  }
}

with:

class { 'cassandra::file':
  file       => 'cassandra-env.sh',
  file_lines => {
    ...
  }
}
Clone this wiki locally