Merge pull request #4705 from lrusak/systemd

systemd: update to 229
This commit is contained in:
Stephan Raue 2016-02-12 21:04:24 +01:00
commit 1e2c6ef76e
2 changed files with 30 additions and 30 deletions

View File

@ -17,7 +17,7 @@
################################################################################ ################################################################################
PKG_NAME="systemd" PKG_NAME="systemd"
PKG_VERSION="228" PKG_VERSION="229"
PKG_REV="1" PKG_REV="1"
PKG_ARCH="any" PKG_ARCH="any"
PKG_LICENSE="GPL" PKG_LICENSE="GPL"

View File

@ -23,35 +23,35 @@ index 420a246..06bca92 100644
static void systemctl_help(void) { static void systemctl_help(void) {
pager_open_if_enabled(); pager_open_if_enabled();
@@ -7450,21 +7455,21 @@ static int systemctl_main(int argc, char *argv[]) { @@ -7370,21 +7370,21 @@
{ "enable", 2, VERB_ANY, 0, enable_unit }, { "enable", 2, VERB_ANY, 0, enable_unit },
{ "disable", 2, VERB_ANY, 0, enable_unit }, { "disable", 2, VERB_ANY, 0, enable_unit },
{ "is-enabled", 2, VERB_ANY, 0, unit_is_enabled }, { "is-enabled", 2, VERB_ANY, 0, unit_is_enabled },
- { "reenable", 2, VERB_ANY, 0, enable_unit }, - { "reenable", 2, VERB_ANY, 0, enable_unit },
- { "preset", 2, VERB_ANY, 0, enable_unit }, - { "preset", 2, VERB_ANY, 0, enable_unit },
- { "preset-all", VERB_ANY, 1, 0, preset_all }, - { "preset-all", VERB_ANY, 1, 0, preset_all },
- { "mask", 2, VERB_ANY, 0, enable_unit }, - { "mask", 2, VERB_ANY, 0, enable_unit },
- { "unmask", 2, VERB_ANY, 0, enable_unit }, - { "unmask", 2, VERB_ANY, 0, enable_unit },
- { "link", 2, VERB_ANY, 0, enable_unit }, - { "link", 2, VERB_ANY, 0, enable_unit },
+ { "reenable", 2, VERB_ANY, 0, nope }, + { "reenable", 2, VERB_ANY, 0, nope },
+ { "preset", 2, VERB_ANY, 0, nope }, + { "preset", 2, VERB_ANY, 0, nope },
+ { "preset-all", VERB_ANY, 1, 0, nope }, + { "preset-all", VERB_ANY, 1, 0, nope },
+ { "mask", 2, VERB_ANY, 0, nope }, + { "mask", 2, VERB_ANY, 0, nope },
+ { "unmask", 2, VERB_ANY, 0, nope }, + { "unmask", 2, VERB_ANY, 0, nope },
+ { "link", 2, VERB_ANY, 0, nope }, + { "link", 2, VERB_ANY, 0, nope },
{ "switch-root", 2, VERB_ANY, 0, switch_root }, { "switch-root", 2, VERB_ANY, VERB_NOCHROOT, switch_root },
{ "list-dependencies", VERB_ANY, 2, 0, list_dependencies }, { "list-dependencies", VERB_ANY, 2, VERB_NOCHROOT, list_dependencies },
- { "set-default", 2, 2, 0, set_default }, - { "set-default", 2, 2, 0, set_default },
+ { "set-default", 2, 2, 0, nope }, + { "set-default", 2, 2, 0, nope },
{ "get-default", VERB_ANY, 1, 0, get_default, }, { "get-default", VERB_ANY, 1, 0, get_default, },
{ "set-property", 3, VERB_ANY, 0, set_property }, { "set-property", 3, VERB_ANY, VERB_NOCHROOT, set_property },
{ "is-system-running", VERB_ANY, 1, 0, is_system_running }, { "is-system-running", VERB_ANY, 1, 0, is_system_running },
- { "add-wants", 3, VERB_ANY, 0, add_dependency }, - { "add-wants", 3, VERB_ANY, 0, add_dependency },
- { "add-requires", 3, VERB_ANY, 0, add_dependency }, - { "add-requires", 3, VERB_ANY, 0, add_dependency },
- { "edit", 2, VERB_ANY, 0, edit }, - { "edit", 2, VERB_ANY, VERB_NOCHROOT, edit },
+ { "add-wants", 3, VERB_ANY, 0, nope }, + { "add-wants", 3, VERB_ANY, 0, nope },
+ { "add-requires", 3, VERB_ANY, 0, nope }, + { "add-requires", 3, VERB_ANY, 0, nope },
+ { "edit", 2, VERB_ANY, 0, nope }, + { "edit", 2, VERB_ANY, 0, nope },
{} {}
}; };