aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* bash-completion: busctl: make variables localYu Watanabe2018-03-301-4/+4
|
* bash-completion: busctl: do not suggest "-" for signatureYu Watanabe2018-03-301-1/+1
| | | | Fixes #8371.
* bash-completion: busctl: suggests only writable properties for set-propertyYu Watanabe2018-03-301-2/+3
|
* Rename suspend-to-hibernate to suspend-then-hibernateMario Limonciello2018-03-281-1/+1
| | | | | Per some discussion with Gnome folks, they would prefer this name as it's more descriptive of what's happening.
* Introduce suspend-to-hibernate (#8274)Mario Limonciello2018-03-081-2/+3
| | | | | | | | | | | | | | Suspend to Hibernate is a new sleep method that invokes suspend for a predefined period of time before automatically waking up and hibernating the system. It's similar to HybridSleep however there isn't a performance impact on every suspend cycle. It's intended to use with systems that may have a higher power drain in their supported suspend states to prevent battery and data loss over an extended suspend cycle. Signed-off-by: Mario Limonciello <mario.limonciello@dell.com>
* shell-completion: add --global and unit-pathsZbigniew Jędrzejewski-Szmek2018-02-091-5/+5
|
* analyze: merge {get,set}-log-{level,target} to log-{level,target} (#8020)Yu Watanabe2018-01-271-3/+3
| | | | Also, service-watchdogs now shows current watchdog state when no optional argument is provided.
* bash-completion: systemd-analyze: add service-watchdogs verbJan Klötzke2018-01-221-0/+8
|
* bash-completion: timedatectl: suggests hostname and machine nameYu Watanabe2018-01-101-3/+11
|
* bash-completion: run: add missing optionsYu Watanabe2018-01-101-3/+4
|
* bash-completion: resolve: add missing optionsYu Watanabe2018-01-101-3/+17
|
* bash-completion: nspawn: add missing optionsYu Watanabe2018-01-101-9/+18
|
* bash-completion: detect-virt: add missing optionYu Watanabe2018-01-101-1/+2
|
* bash-completion: cgls: suggests unitsYu Watanabe2018-01-101-1/+15
|
* bash-completion: analyze: add missing options and verbsYu Watanabe2018-01-101-4/+5
|
* bash-completion: systemctl: add missing options and verbsYu Watanabe2018-01-101-6/+8
|
* bash-completion: networkctl: 'list' and 'lldp' can take linksYu Watanabe2018-01-101-2/+2
|
* bash-completion: machinectl: add missing options and verbsYu Watanabe2018-01-101-4/+15
|
* bash-completion: loginctl: add missing options and verbsYu Watanabe2018-01-101-5/+6
|
* bash-completion: localectl: add a missing option and verbsYu Watanabe2018-01-101-5/+8
|
* bash-completion: kernel-install: update default path to kernel imageYu Watanabe2018-01-101-1/+1
|
* bash-completion: journalctl add missing optionsYu Watanabe2018-01-101-9/+9
| | | | Also, this deprecates '--this-boot' option.
* bash-completion: hostnamectl: add a missing optionYu Watanabe2018-01-101-1/+1
|
* bash-completion: coredumpctl: support more optionsYu Watanabe2018-01-101-4/+7
|
* bash-completion: busctl: support more options and verbsYu Watanabe2018-01-101-3/+4
|
* bash-completion: bootctl: support more options and verbsYu Watanabe2018-01-101-2/+3
|
* Add license headers and SPDX identifiers to meson.build filesZbigniew Jędrzejewski-Szmek2017-11-191-0/+17
| | | | | | | So far I avoided adding license headers to meson files, but they are pretty big and important and should carry license headers like everything else. I added my own copyright, even though other people modified those files too. But this is mostly symbolic, so I hope that's OK.
* Add SPDX license headers to shell completion scriptsZbigniew Jędrzejewski-Szmek2017-11-1923-0/+23
|
* build-sys: s/ENABLE_RESOLVED/ENABLE_RESOLVE/Zbigniew Jędrzejewski-Szmek2017-10-041-1/+1
| | | | | | The configuration option was called -Dresolve, but the internal define was …RESOLVED. This options governs more than just resolved itself, so let's settle on the version without "d".
* build-sys: use #if Y instead of #ifdef Y everywhereZbigniew Jędrzejewski-Szmek2017-10-041-1/+1
| | | | | | | | | | | | | | | The advantage is that is the name is mispellt, cpp will warn us. $ git grep -Ee "conf.set\('(HAVE|ENABLE)_" -l|xargs sed -r -i "s/conf.set\('(HAVE|ENABLE)_/conf.set10('\1_/" $ git grep -Ee '#ifn?def (HAVE|ENABLE)' -l|xargs sed -r -i 's/#ifdef (HAVE|ENABLE)/#if \1/; s/#ifndef (HAVE|ENABLE)/#if ! \1/;' $ git grep -Ee 'if.*defined\(HAVE' -l|xargs sed -i -r 's/defined\((HAVE_[A-Z0-9_]*)\)/\1/g' $ git grep -Ee 'if.*defined\(ENABLE' -l|xargs sed -i -r 's/defined\((ENABLE_[A-Z0-9_]*)\)/\1/g' + manual changes to meson.build squash! build-sys: use #if Y instead of #ifdef Y everywhere v2: - fix incorrect setting of HAVE_LIBIDN2
* analyze: add get-log-level, get-log-target verbsLucas Werkmeister2017-09-071-1/+1
| | | | | | | They’re counterparts to the existing set-log-level and set-log-target verbs, simply printing the current value to stdout. This makes it slightly easier to temporarily change the log level and/or target and then restore the old value(s).
* shell-completion: add systemd-analyze set-log-targetLucas Werkmeister2017-09-071-0/+8
| | | | | The `systemd-analyze set-log-target` command was added in v227 (commit 2ca2a91cf1), but was missing from the shell completion specifications.
* bash-completion: use the first argument instead of the global variable (#6457)Yu Watanabe2017-07-271-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | Without this fix: $ systemctl start <tab> Display all 135 possibilities? (y or n) $ __get_startable_units --system | wc -l 224 the number of the suggestions are quite different, as __get_startable_units --system does not filter already started units. With this fix, $ systemctl start <tab> Display all 135 possibilities? (y or n) $ __get_startable_units --system | wc -l 123 $ __get_template_names --system | wc -l 12 the number of the suggestions matches one the function returns. For consistency with the other internal functions, it should use the first argument instead of the global variable $mode. [zj: add commit message to make it sound like we know what we're doing]
* build-sys: drop gitignore patterns for in-tree buildsZbigniew Jędrzejewski-Szmek2017-07-181-1/+0
| | | | ... and other autotools-generated files.
* build-sys: drop automake supportZbigniew Jędrzejewski-Szmek2017-07-181-1/+0
| | | | | v2: - also mention m4
* Add networkctl label to man and shell completionZbigniew Jędrzejewski-Szmek2017-06-271-1/+1
|
* shell-completion: add systemctl revert (#6042)Lucas Werkmeister2017-05-291-1/+1
| | | | | | The `systemctl revert` command was added in v230 (commit 344ca7556b), but was missing from the shell completion specifications. Fixes #5978.
* Add short-iso-precise for journalctl output (#5884)Ian Wienand2017-05-071-1/+1
| | | | This adds a short-iso-precise option for journalctl output. It is similar to short-iso, but includes microseconds.
* meson: use booleans for conf.set and drop unecessary conditionalsZbigniew Jędrzejewski-Szmek2017-05-021-1/+1
| | | | | | | | | Using conf.set() with a boolean argument does the right thing: either #ifdef or #undef. This means that conf.set can be used unconditionally. Previously I used '1' as the placeholder value, and that needs to be changed to 'true' for consistency (under meson 1 cannot be used in boolean context). All checks need to be adjusted.
* meson: reindent all files with 8 spacesZbigniew Jędrzejewski-Szmek2017-04-231-43/+41
| | | | | | | The indentation for emacs'es meson-mode is added .dir-locals. All files are reindented automatically, using the lasest meson-mode from git. Indentation should now be fairly consistent.
* meson: use join_paths consistentlyMichael Biebl2017-04-231-1/+1
| | | | | With -Dsplit-usr=true, we set rootprefix to /. This leads to //lib/systemd or //lib/udev for various dir variables. Using join_paths() avoids this.
* meson: build systemd using mesonZbigniew Jędrzejewski-Szmek2017-04-231-0/+52
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It's crucial that we can build systemd using VS2010! ... er, wait, no, that's not the official reason. We need to shed old systems by requring python 3! Oh, no, it's something else. Maybe we need to throw out 345 years of knowlege accumulated in autotools? Whatever, this new thing is cool and shiny, let's use it. This is not complete, I'm throwing it out here for your amusement and critique. - rules for sd-boot are missing. Those might be quite complicated. - rules for tests are missing too. Those are probably quite simple and repetitive, but there's lots of them. - it's likely that I didn't get all the conditions right, I only tested "full" compilation where most deps are provided and nothing is disabled. - busname.target and all .busname units are skipped on purpose. Otherwise, installation into $DESTDIR has the same list of files and the autoconf install, except for .la files. It'd be great if people had a careful look at all the library linking options. I added stuff until things compiled, and in the end there's much less linking then in the old system. But it seems that there's still a lot of unnecessary deps. meson has a `shared_module` statement, which sounds like something appropriate for our nss and pam modules. Unfortunately, I couldn't get it to work. For the nss modules, we need an .so version of '2', but `shared_module` disallows the version argument. For the pam module, it also didn't work, I forgot the reason. The handling of .m4 and .in and .m4.in files is rather awkward. It's likely that this could be simplified. If make support is ever dropped, I think it'd make sense to switch to a different templating system so that two different languages and not required, which would make everything simpler yet. v2: - use get_pkgconfig_variable - use sh not bash - use add_project_arguments v3: - drop required:true and fix progs/prog typo v4: - use find_library('bz2') - add TTY_GID definition - define __SANE_USERSPACE_TYPES__ - use join_paths(prefix, ...) is used on all paths to make them all absolute v5: - replace all declare_dependency's with [] - add more conf.get guards around optional components v6: - drop -pipe, -Wall which are the default in meson - use compiler.has_function() and compiler.has_header_symbol instead of the hand-rolled checks. - fix duplication in 'liblibsystemd' library name - use the right .sym file for pam_systemd - rename 'compiler' to 'cc': shorter, and more idiomatic. v7: - use ENABLE_ENVIRONMENT_D not HAVE_ENVIRONMENT_D - rename prefix to prefixdir, rootprefix to rootprefixdir ("prefix" is too common of a name and too easy to overwrite by mistake) - wrap more stuff with conf.get('ENABLE...') == 1 - use rootprefix=='/' and rootbindir as install_dir, to fix paths under split-usr==true. v8: - use .split() also for src/coredump. Now everything is consistent ;) - add rootlibdir option and use it on the libraries that require it v9: - indentation v10: - fix check for qrencode and libaudit v11: - unify handling of executable paths, provide options for all progs This makes the meson build behave slightly differently than the autoconf-based one, because we always first try to find the executable in the filesystem, and fall back to the default. I think different handling of loadkeys, setfont, and telinit was just a historical accident. In addition to checking in $PATH, also check /usr/sbin/, /sbin for programs. In Fedora $PATH includes /usr/sbin, (and /sbin is is a symlink to /usr/sbin), but in Debian, those directories are not included in the path. C.f. https://github.com/mesonbuild/meson/issues/1576. - call all the options 'xxx-path' for clarity. - sort man/rules/meson.build properly so it's stable
* hostname: add 'convertible' chassis typeDavid Herrmann2017-02-281-1/+1
| | | | | | | | | Add the 'convertible' type to the set of allowed chassis. This applies to all devices that can be transformed by the user from laptop style to tablet style. This does not add any auto-detection, yet. It only makes 'set-chassis' accept 'convertible' as valid input.
* shell-completion: include the new coredumpctl optionsGiedrius Statkevičius2017-02-241-1/+1
|
* shell_completion: Add -r option for coredumpctlNamhyung Kim2017-02-141-1/+2
|
* systemctl: restore --failed (#5198)Zbigniew Jędrzejewski-Szmek2017-02-021-1/+1
| | | | | | | | | 'systemctl --failed' is an extremely common operation and it's nice to have a shortcut for it. Revert "man: don't document systemctl --failed" and add the option back to systemctl's help and shell completion scripts. This reverts commit 036359ba8d0aba7db7eac75d10073a849a033fd1.
* bash-completion: add support for --now (#5155)Jan Synacek2017-01-251-1/+1
|
* bash_completion: journalctl: Complete -t option valuesNamhyung Kim2017-01-211-0/+3
| | | | The -t or --identifier requires a syslog identifier.
* bash_completion: journalctl: add missing optionsNamhyung Kim2017-01-211-2/+2
| | | | The --no-hostname and --vacuum-files were missing, add them.
* shell-completion: redirect all errors from systemctl to /dev/nullZbigniew Jędrzejewski-Szmek2017-01-111-1/+1
| | | | | | Completion scripts should not generate errors, ever. https://bugzilla.redhat.com/show_bug.cgi?id=1409649