load-dropin.c revision e99e38bbdcca3fe5956823bdb3d38544ccf93221
/*-*- Mode: C; c-basic-offset: 8 -*-*/
/***
This file is part of systemd.
Copyright 2010 Lennart Poettering
under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 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
General Public License for more details.
You should have received a copy of the GNU 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"
DIR *d;
int r;
return 0;
return -errno;
}
char *f;
continue;
r = -ENOMEM;
goto finish;
}
free(f);
if (r < 0)
goto finish;
}
r = 0;
closedir(d);
return r;
}
int unit_load_dropin(Unit *u) {
Iterator i;
int r;
char *t;
assert(u);
/* Load dependencies from supplementary drop-in directories */
char *path;
char **p;
return -ENOMEM;
r = iterate_dir(u, path);
if (r < 0)
return r;
char *template;
/* Also try the template dir */
if (!(template = unit_name_template(t)))
return -ENOMEM;
if (r < 0)
return -ENOMEM;
r = iterate_dir(u, path);
if (r < 0)
return r;
}
}
}
return 0;
}