i want to delete a file "/root/abc" after ensuring if /root/abc file is empty.
file { '/root/abc' :
ensure => absent,
content => '',
}
But this is not working.. can anybody help me in this ?
i want to delete a file "/root/abc" after ensuring if /root/abc file is empty.
file { '/root/abc' :
ensure => absent,
content => '',
}
But this is not working.. can anybody help me in this ?