From 3d3961f26770b2949a30a72457e1660969bc17b8 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Sat, 16 Apr 2011 03:29:54 +0200 Subject: systemctl: always consider unit files with no [Install] section but stored in /lib enabled --- src/systemctl.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src') diff --git a/src/systemctl.c b/src/systemctl.c index 0a72874145..39901c3674 100644 --- a/src/systemctl.c +++ b/src/systemctl.c @@ -4152,6 +4152,15 @@ static int install_info_apply(const char *verb, LookupPaths *paths, InstallInfo return -ENOENT; } + /* Consider unit files stored in /lib and /usr always enabled + * if they have no [Install] data. */ + if (streq(verb, "is-enabled") && + strv_isempty(i->aliases) && + strv_isempty(i->wanted_by) && + (path_startswith(filename, "/lib") || + path_startswith(filename, "/usr"))) + return 1; + i->path = filename; if ((r = config_parse(filename, f, NULL, items, true, i)) < 0) { -- cgit v1.2.3-54-g00ecf