You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are using the posix_acl module on some Oracle Linux 7 Servers.
Oracle Linux is binary compatible to RedHat Enterprise Linux or CentOS.
When i start puppet, i get the following warning message from posix_acl module: Info: Using configured environment 'XXXX' Info: Retrieving pluginfacts Info: Retrieving plugin Info: Retrieving locales Info: Loading facts Warning: Found multiple default providers for posix_acl: genericacl, posixacl; using genericacl Info: Caching catalog for XXXX Info: Applying configuration version '1623935894' Notice: Applied catalog in 19.77 seconds
I also set the correct provider in the puppet code where i wanna use posix_acl: posix_acl { 'XXX': provider => posixacl, action => set, permission => [ "XXX" ], require => [ User['XXX'], ], recursive => true, }
How can i resolve this warning about the multiple default providers and force the module to use posic_acl?
Or can this warning be ignored cause i set the correct provider within the puppet code?
Maybe also a bug with using posix_acl on a Oracle Linux Machine.
Thanks in advance!
The text was updated successfully, but these errors were encountered:
You can submit a patch that changes it to defaultfor osfamily: [:debian, :redhat, :suse, gentoo] which I think would make it work for all RedHat-derived OSes.
We are using the posix_acl module on some Oracle Linux 7 Servers.
Oracle Linux is binary compatible to RedHat Enterprise Linux or CentOS.
When i start puppet, i get the following warning message from posix_acl module:
Info: Using configured environment 'XXXX' Info: Retrieving pluginfacts Info: Retrieving plugin Info: Retrieving locales Info: Loading facts Warning: Found multiple default providers for posix_acl: genericacl, posixacl; using genericacl Info: Caching catalog for XXXX Info: Applying configuration version '1623935894' Notice: Applied catalog in 19.77 seconds
I also set the correct provider in the puppet code where i wanna use posix_acl:
posix_acl { 'XXX': provider => posixacl, action => set, permission => [ "XXX" ], require => [ User['XXX'], ], recursive => true, }
How can i resolve this warning about the multiple default providers and force the module to use posic_acl?
Or can this warning be ignored cause i set the correct provider within the puppet code?
Maybe also a bug with using posix_acl on a Oracle Linux Machine.
Thanks in advance!
The text was updated successfully, but these errors were encountered: