Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-09-06 | core: pass details to polkit for some unit actions | Michael Chapman | |
The following details are passed: - unit: the primary name of the unit upon which the action was invoked (i.e. after resolving any aliases); - verb: one of 'start', 'stop', 'reload', 'restart', 'try-restart', 'reload-or-restart', 'reload-or-try-restart', 'kill', 'reset-failed', or 'set-property', corresponding to the systemctl verb used to invoke the action. Typical use of these details in a polkit policy rule might be: // Allow alice to manage example.service; // fall back to implicit authorization otherwise. polkit.addRule(function(action, subject) { if (action.id == "org.freedesktop.systemd1.manage-units" && action.lookup("unit") == "example.service" && subject.user == "alice") { return polkit.Result.YES; } }); We also supply a custom polkit message that includes the unit's name and the requested operation. | |||
2015-05-05 | build-sys: remove left-over | Kay Sievers | |
2015-02-18 | Translate fsckd messages for plymouth | Didier Roche | |
For plymouth themes not supporting i18n (like .script), send translated messages to display to user, which is equivalent to the sent machine readable data. | |||
2015-01-22 | import: add org.freedesktop.import1.policy.in to POTFILES.in | Piotr Drąg | |
https://bugs.freedesktop.org/show_bug.cgi?id=88705 | |||
2014-12-25 | machined: add org.freedesktop.machine1.policy.in to POTFILES.in | Filipe Brandenburger | |
The new polkit file was introduced in commit d04c1fb8e21560 ("machined: introduce polkit for OpenLogin() call"). | |||
2012-07-15 | build-sys: fix "make distcheck" | Kay Sievers | |
2012-07-13 | test: hook up more tests with make check | Lennart Poettering | |
2011-12-31 | hostnamed, localed: move config files to subdir | Kay Sievers | |
2011-12-31 | timedated: move sources to subdirectory | Kay Sievers | |
2011-12-31 | logind: fix POTFILES location | Kay Sievers | |
2011-07-11 | build-sys: Add i18n support through intltool | Bastien Nocera | |
And put the PolicyKit policy files up for translation. |