1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
4 This file is part of systemd.
6 Copyright 2014 Lennart Poettering
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
27 #include "unit-name.h"
28 #include "generator.h"
29 #include "path-util.h"
30 #include "fstab-util.h"
33 int generator_write_fsck_deps(
45 if (!is_device_path(what)) {
46 log_warning("Checking was requested for \"%s\", but it is not a device.", what);
50 if (!isempty(fstype) && !streq(fstype, "auto")) {
52 r = fsck_exists(fstype);
54 /* treat missing check as essentially OK */
55 log_debug_errno(r, "Checking was requested for %s, but fsck.%s does not exist: %m", what, fstype);
58 return log_warning_errno(r, "Checking was requested for %s, but fsck.%s cannot be used: %m", what, fstype);
61 if (streq(where, "/")) {
64 lnk = strjoina(dest, "/" SPECIAL_LOCAL_FS_TARGET ".wants/systemd-fsck-root.service");
66 mkdir_parents(lnk, 0755);
67 if (symlink(SYSTEM_DATA_UNIT_PATH "/systemd-fsck-root.service", lnk) < 0)
68 return log_error_errno(errno, "Failed to create symlink %s: %m", lnk);
71 _cleanup_free_ char *fsck = NULL;
73 fsck = unit_name_from_path_instance("systemd-fsck", what, ".service");
78 "RequiresOverridable=%s\n"
87 int generator_write_timeouts(const char *dir, const char *what, const char *where,
88 const char *opts, char **filtered) {
90 /* Allow configuration how long we wait for a device that
91 * backs a mount point to show up. This is useful to support
92 * endless device timeouts for devices that show up only after
93 * user input, like crypto devices. */
95 _cleanup_free_ char *node = NULL, *unit = NULL, *timeout = NULL;
99 r = fstab_filter_options(opts, "comment=systemd.device-timeout\0" "x-systemd.device-timeout\0",
100 NULL, &timeout, filtered);
104 r = parse_sec(timeout, &u);
106 log_warning("Failed to parse timeout for %s, ignoring: %s",
111 node = fstab_node_to_udev_node(what);
115 unit = unit_name_from_path(node, ".device");
119 return write_drop_in_format(dir, unit, 50, "device-timeout",
120 "# Automatically generated by %s\n\n"
121 "[Unit]\nJobTimeoutSec=" USEC_FMT,
122 program_invocation_short_name,