diff options
author | Frederic Crozat <fcrozat@suse.com> | 2011-08-22 14:58:50 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2011-08-24 02:19:30 +0200 |
commit | 65457142f12ecc4bb39fad51b73b9d3e6eac4af5 (patch) | |
tree | 295b56a9697bf28c50124702e66b4ea1a9cc4311 /src/systemctl.c | |
parent | 240fc26e03e93641523315222fea4cfbf71c0ef9 (diff) |
initctl: check for kexec_loaded when reboot is requested through initctl
Diffstat (limited to 'src/systemctl.c')
-rw-r--r-- | src/systemctl.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/systemctl.c b/src/systemctl.c index 604400d8fb..0a35d8e021 100644 --- a/src/systemctl.c +++ b/src/systemctl.c @@ -4427,18 +4427,6 @@ static int parse_time_spec(const char *t, usec_t *_u) { return 0; } -static bool kexec_loaded(void) { - bool loaded = false; - char *s; - - if (read_one_line_file("/sys/kernel/kexec_loaded", &s) >= 0) { - if (s[0] == '1') - loaded = true; - free(s); - } - return loaded; -} - static int shutdown_parse_argv(int argc, char *argv[]) { enum { |