4540949d96
Changed the type name from append_line to whole_line. After feedback that having a type with a verb in the name was confusing.
7 lines
131 B
Puppet
7 lines
131 B
Puppet
file { '/tmp/dansfile':
|
|
ensure => present
|
|
}->
|
|
whole_line { 'dans_line':
|
|
line => 'dan is awesome',
|
|
path => '/tmp/dansfile',
|
|
}
|