summaryrefslogtreecommitdiff
path: root/src/file/ldfile.cil
blob: 5df16b4dfa38a77b66ec04ce4f2f4cacaba3c1fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(block loader
    (block conf
        (blockinherit .file.template)
        (call .xattr.associate_fs (file))
        (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" dir file_context)
        (filecon "/var/cache/ldconfig/.*" file file_context)))