blob: d706b58785a132c11b82ae6efe74683381bd82ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
(block loader
(block conf
(blockinherit file.conf.template)
(filecon "/etc/ld.so.conf" file file_context)
(filecon "/etc/ld.so.conf.d" dir file_context)
(filecon "/etc/ld.so.conf.d/.*" file file_context)
(filecon "/etc/ls.so.cache" file file_context)
(filecon "/etc/ld.so.d" dir file_context))
(block exec
(blockinherit file.exec.template)
(filecon "/usr/bin/ld.so" file file_context))
(block cache
(blockinherit file.cache.template)
(filecon "/var/cache/ldconfig" file file_context)
(filecon "/var/cache/ldconfig/.*" file file_context)))
|