summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2012-05-30 15:04:39 +0200
committerLennart Poettering <lennart@poettering.net>2012-05-30 15:04:39 +0200
commiteb2672893108e14d50bd79b7fc714b75c5427c0b (patch)
treebe8ca9937bee4f518495bbacf194b9ab4f10e2b9
parent069cfc85f876bb6966cb5a9bbe0235f5064622cd (diff)
sleep: print nice messages right before and right after system hibernate/sleep
-rw-r--r--TODO6
-rw-r--r--src/sleep/sleep.c10
2 files changed, 10 insertions, 6 deletions
diff --git a/TODO b/TODO
index f4d3c6346..a9e38d347 100644
--- a/TODO
+++ b/TODO
@@ -36,12 +36,6 @@ Features:
* parse kernel cmdline option for capability bset
-* logind: listen to power-button events
- - run poweroff if no session is active
- - console session should beep when we refuse to poweroff
- - graphical sessions will show a dialog, like they do already today
- - use udev to tag input devices we want to subscribe to
-
* journalctl /dev/sda, journalctl /usr/bin/httpd, journalctl --device=b12:8 (--device=n12, --device=+usb:1-1)
* make use of /sys/power/wake_lock in inhibitors
diff --git a/src/sleep/sleep.c b/src/sleep/sleep.c
index 7062dc242..941edc303 100644
--- a/src/sleep/sleep.c
+++ b/src/sleep/sleep.c
@@ -65,12 +65,22 @@ int main(int argc, char *argv[]) {
arguments[3] = NULL;
execute_directory(SYSTEMD_SLEEP_BINARY_PATH, NULL, arguments);
+ if (streq(argv[1], "suspend"))
+ log_info("Suspending system...");
+ else
+ log_info("Hibernating system...");
+
fputs(verb, f);
fputc('\n', f);
fflush(f);
r = ferror(f) ? -errno : 0;
+ if (streq(argv[1], "suspend"))
+ log_info("System resumed.");
+ else
+ log_info("System thawed.");
+
arguments[1] = (char*) "post";
execute_directory(SYSTEMD_SLEEP_BINARY_PATH, NULL, arguments);