Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-07-02 | man: improve grammar and word formatting in numerous man pages | Jason St. John | |
Use proper grammar, word usage, adjective hyphenation, commas, capitalization, spelling, etc. To improve readability, some run-on sentences or sentence fragments were revised. [zj: remove the space from 'file name', 'host name', and 'time zone'.] | |||
2013-06-09 | Allow for the use of @ in remote host calls | Daniel Wallace | |
Without this you have to use %40 with the -H flag because dbus doesn't like the @ sign being unescaped. | |||
2013-05-23 | Fix --no-ask-password | Jan Janssen | |
POSIX_ME_HARDER mode is disabled for localectl. It doesn't make much sense in case of localectl, and there's little reason for localectl to behave specially. | |||
2013-05-21 | man: Document missing options | Jan Janssen | |
2013-04-05 | Use initalization instead of explicit zeroing | Zbigniew Jędrzejewski-Szmek | |
Before, we would initialize many fields twice: first by filling the structure with zeros, and then a second time with the real values. We can let the compiler do the job for us, avoiding one copy. A downside of this patch is that text gets slightly bigger. This is because all zero() calls are effectively inlined: $ size build/.libs/systemd text data bss dec hex filename before 897737 107300 2560 1007597 f5fed build/.libs/systemd after 897873 107300 2560 1007733 f6075 build/.libs/systemd … actually less than 1‰. A few asserts that the parameter is not null had to be removed. I don't think this changes much, because first, it is quite unlikely for the assert to fail, and second, an immediate SEGV is almost as good as an assert. | |||
2013-03-22 | timedatectl: show CanNTP field | Lennart Poettering | |
2013-03-07 | pager: introduce "jump to end" option | Harald Hoyer | |
$ journalctl -be is what you want :) https://bugzilla.redhat.com/show_bug.cgi?id=867841 | |||
2013-02-07 | strv: add strv_print | Thomas Hindoe Paaboel Andersen | |
Clearer, and spares the temp variable. | |||
2013-01-04 | build-sys: drop all distribution specfic checks | Lennart Poettering | |
Yay, we now have a completely generic systemd. No distribution specific checks anymore! | |||
2012-11-23 | timedatectl: improve english language DST change texts a bit | Lennart Poettering | |
2012-11-23 | timedatectl: show both current actual timezone name and UTC distance in ↵ | Lennart Poettering | |
TImezone field | |||
2012-11-23 | timedatctl: bring manual strftime in sync with format_timestamp() | Lennart Poettering | |
2012-11-22 | timedatectl: replace ",' with ':' | Kay Sievers | |
2012-11-22 | timedatectl: shorten output to print single < 80 char line | Kay Sievers | |
2012-11-14 | timedatectl: break line to not exceed 80 columns | Zbigniew Jędrzejewski-Szmek | |
2012-11-12 | enable localization for common *ctl commands | Dave Reisner | |
2012-11-11 | timedatectl: properly print 30 minutes DST transitions | Kay Sievers | |
2012-11-02 | timedatectl: show "DST active: n/a" if no DST data is available | Kay Sievers | |
2012-11-02 | timedatectl: explain everything nobody wants to know about DST | Kay Sievers | |
2012-10-19 | set: introduce strv_sort() | Lennart Poettering | |
2012-10-19 | timedatectl,hostnamectl: rework --help text | Lennart Poettering | |
2012-10-17 | timedatectl: rename --fix-system to --adjust-system-clock | Lennart Poettering | |
Quite long to read but hopefully less misleading. | |||
2012-10-17 | timedatectl: ensure n_zones is initialized | Dave Reisner | |
2012-10-17 | timedatectl: properly initialize struct before decoding bus messages | Lennart Poettering | |
2012-10-17 | timedatectl: introduce new command line client for timedated | Lennart Poettering | |
Much like logind has a client in loginctl, and journald in journalctl introduce timedatectl, to change the system time (incl. RTC), timezones and related settings. |