-
Type:
Bug
-
Status: Accepted
-
Priority:
Normal
-
Resolution: Unresolved
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: None
-
Labels:
-
Environment:
Fresh installation (no upgrade) of PE 2017.1.0 running on CentOS 7
-
Template:customfield_10700 181500
-
Acceptance Criteria:
-
Team:Night's Watch
-
Sprint:ready for triage
-
QA Risk Assessment:Needs Assessment
When having a file on the system (touch /tmp/foo)
and mananging this file from puppet as a directory, puppet will not convert the file to a directory.
e.g.
class demo {
|
File {
|
owner => 'root',
|
group => 'root',
|
mode => '0644',
|
}
|
file { '/tmp/foo':
|
ensure => directory,
|
}
|
file { '/tmp/foo/bar':
|
ensure => file,
|
}
|
}
|