summaryrefslogtreecommitdiff
path: root/src/shared/env-file-label.c
blob: add68d224dbd14ad5d3106669f886494e4200380 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* SPDX-License-Identifier: LGPL-2.1+ */

#include <sys/stat.h>

#include "env-file-label.h"
#include "env-file.h"
#include "selinux-util.h"

int write_env_file_label(const char *fname, char **l) {
        int r;

        r = mac_selinux_create_file_prepare(fname, S_IFREG);
        if (r < 0)
                return r;

        r = write_env_file(fname, l);

        mac_selinux_create_file_clear();

        return r;
}