Searched defs:exec (Results 1 - 2 of 2) sorted by relevance
/systemd/src/dbus1-generator/ |
H A D | dbus1-generator.c | 39 const char *exec, 49 assert(service || exec); 78 exec, 152 _cleanup_free_ char *name = NULL, *exec = NULL, *user = NULL, *service = NULL; local 156 { "D-BUS Service", "Exec", config_parse_string, 0, &exec }, 201 if (streq(exec, "/bin/false") || !exec) { 206 if (exec[0] != '/') { 212 return create_dbus_files(p, name, service, exec, user, type); 35 create_dbus_files( const char *path, const char *name, const char *service, const char *exec, const char *user, const char *type) argument
|
/systemd/src/analyze/ |
H A D | analyze-verify.c | 137 static int verify_executable(Unit *u, ExecCommand *exec) { argument 138 if (exec == NULL) 141 if (access(exec->path, X_OK) < 0) 142 return log_unit_error_errno(u, errno, "Command %s is not executable: %m", exec->path); 148 ExecCommand *exec; local 154 exec = u->type == UNIT_SOCKET ? SOCKET(u)->control_command : 157 k = verify_executable(u, exec);
|
Completed in 819 milliseconds