]>
git.ipfire.org Git - thirdparty/systemd.git/blob - src/shared/fileio-label.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
5 #include "fileio-label.h"
7 #include "selinux-util.h"
9 int write_string_file_atomic_label_ts(const char *fn
, const char *line
, struct timespec
*ts
) {
12 r
= mac_selinux_create_file_prepare(fn
, S_IFREG
);
16 r
= write_string_file_ts(fn
, line
, WRITE_STRING_FILE_CREATE
|WRITE_STRING_FILE_ATOMIC
, ts
);
18 mac_selinux_create_file_clear();
23 int create_shutdown_run_nologin_or_warn(void) {
26 /* This is used twice: once in systemd-user-sessions.service, in order to block logins when we actually go
27 * down, and once in systemd-logind.service when shutdowns are scheduled, and logins are to be turned off a bit
28 * in advance. We use the same wording of the message in both cases. */
30 r
= write_string_file_atomic_label("/run/nologin",
31 "System is going down. Unprivileged users are not permitted to log in anymore. "
32 "For technical details, see pam_nologin(8).");
34 return log_error_errno(r
, "Failed to create /run/nologin: %m");