mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 16:37:19 +09:00
36 lines
787 B
C
36 lines
787 B
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include "env-file-label.h"
|
|
#include "env-file.h"
|
|
#include "selinux-util.h"
|
|
|
|
int write_env_file_label(int dir_fd, const char *fname, char **headers, char **l) {
|
|
int r;
|
|
|
|
r = mac_selinux_create_file_prepare(fname, S_IFREG);
|
|
if (r < 0)
|
|
return r;
|
|
|
|
r = write_env_file(dir_fd, fname, headers, l);
|
|
|
|
mac_selinux_create_file_clear();
|
|
|
|
return r;
|
|
}
|
|
|
|
int write_vconsole_conf_label(char **l) {
|
|
int r;
|
|
|
|
r = mac_selinux_create_file_prepare("/etc/vconsole.conf", S_IFREG);
|
|
if (r < 0)
|
|
return r;
|
|
|
|
r = write_vconsole_conf(AT_FDCWD, "/etc/vconsole.conf", l);
|
|
|
|
mac_selinux_create_file_clear();
|
|
|
|
return r;
|
|
}
|