2011-08-08 18:33:56 +02:00
|
|
|
# This is a simple smoke test
|
|
|
|
# of the file_line resource type.
|
2011-07-27 00:27:42 +02:00
|
|
|
file { '/tmp/dansfile':
|
|
|
|
ensure => present
|
|
|
|
}->
|
2011-08-08 18:33:56 +02:00
|
|
|
file_line { 'dans_line':
|
2011-07-27 00:27:42 +02:00
|
|
|
line => 'dan is awesome',
|
2011-07-28 00:28:44 +02:00
|
|
|
path => '/tmp/dansfile',
|
2011-07-27 00:27:42 +02:00
|
|
|
}
|