load-dropin.c revision 1a7f1b385cd9de8a0da934fadc379860f914ef33
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
/***
This file is part of systemd.
Copyright 2010 Lennart Poettering
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
systemd is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include <dirent.h>
#include <errno.h>
#include "unit.h"
#include "load-dropin.h"
#include "log.h"
#include "strv.h"
#include "unit-name.h"
#include "conf-parser.h"
#include "load-fragment.h"
#include "conf-files.h"
static int add_dependency_consumer(
const char *entry,
const char* filepath,
void *arg) {
int r;
assert(u);
if (r < 0)
return 0;
}
int unit_load_dropin(Unit *u) {
Iterator i;
char *t, **f;
int r;
assert(u);
/* Load dependencies from supplementary drop-in directories */
SET_FOREACH(t, u->names, i) {
char **p;
add_dependency_consumer, u, NULL);
add_dependency_consumer, u, NULL);
}
}
r = unit_find_dropin_paths(u, &u->dropin_paths);
if (r <= 0)
return 0;
STRV_FOREACH(f, u->dropin_paths) {
UNIT_VTABLE(u)->sections,
false, false, false, u);
}
return 0;
}