15

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?

SamK
  • 1,366

1 Answers1

32

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

file { '/etc/motd':
  ensure => present,
  content => '',
}
Oliver F.
  • 145
ThatGraemeGuy
  • 15,588