charge level of the system. In case the charge level is very low the
user is notified (graphically via Plymouth – if available – as well
as in text form on the console), and the system is turned off after a
- 10s delay.
+ 10s delay. The feature can be disabled by passing
+ systemd.battery-check=0 through the kernel command line.
* The 'passwdqc' library is now supported as an alternative to the
'pwquality' library and it can be selected at build time.
</para>
</refsect1>
+ <refsect1>
+ <title>Kernel Command Line</title>
+
+ <para>The following variables are understood:</para>
+
+ <variablelist class='kernel-commandline-options'>
+ <varlistentry>
+ <term><varname>systemd.battery-check=<replaceable>BOOL</replaceable></varname></term>
+
+ <listitem>
+ <para>Takes a boolean. If specified with false, <command>systemd-battery-check</command> command
+ will return immediately with exit status 0 without checking battery capacity and AC power
+ existence, and the service <filename>systemd-battery-check.service</filename> will succeed. This
+ may be useful when the command wrongly detects and reports battery capacity percentage or AC power
+ existence, or when you want to boot the system forcibly.</para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </refsect1>
+
<refsect1>
<title>See Also</title>
<para>
#include "io-util.h"
#include "log.h"
#include "main-func.h"
+#include "parse-util.h"
#include "pretty-print.h"
+#include "proc-cmdline.h"
#include "socket-util.h"
#include "terminal-util.h"
#include "time-util.h"
#define BATTERY_RESTORED_MESSAGE \
"A.C. power restored, continuing."
+static bool arg_doit = true;
+
static int help(void) {
_cleanup_free_ char *link = NULL;
int r;
return 0;
}
+static int parse_proc_cmdline_item(const char *key, const char *value, void *data) {
+ int r;
+
+ assert(key);
+
+ if (streq(key, "systemd.battery-check")) {
+
+ r = value ? parse_boolean(value) : 1;
+ if (r < 0)
+ log_warning_errno(r, "Failed to parse %s switch, ignoring: %s", key, value);
+ else
+ arg_doit = r;
+ }
+
+ return 0;
+}
+
static int parse_argv(int argc, char * argv[]) {
enum {
log_setup();
+ r = proc_cmdline_parse(parse_proc_cmdline_item, NULL, PROC_CMDLINE_STRIP_RD_PREFIX);
+ if (r < 0)
+ log_warning_errno(r, "Failed to parse kernel command line, ignoring: %m");
+
r = parse_argv(argc, argv);
if (r <= 0)
return r;
+ if (!arg_doit) {
+ log_info("Checking battery status and AC power existence is disabled by the kernel command line, skipping execution.");
+ return 0;
+ }
+
r = battery_is_discharging_and_low();
if (r < 0) {
log_warning_errno(r, "Failed to check battery status, ignoring: %m");
Documentation=man:systemd-battery-check.service(8)
ConditionVirtualization=no
ConditionDirectoryNotEmpty=/sys/class/power_supply/
+ConditionKernelCommandLine=!systemd.battery-check=0
AssertPathExists=/etc/initrd-release
DefaultDependencies=no
After=plymouth-start.service