I would like to be sure that the motd file is empty. I would love to do like this:

file { "/etc/motd":
  ensure => empty
}

This obviously does not work.

Is there a simple way to ensure a file is empty instead using the "source" declaration and store an empty file in the file repository?

link|improve this question

feedback

1 Answer

up vote 17 down vote accepted

This ought to work just fine to ensure that the file does exist and contains nothing:

file { "/etc/motd":
  ensure => present,
  content => "",
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.