Skip to content
Snippets Groups Projects
Commit cd4b9035 authored by Lluis's avatar Lluis
Browse files

Fixed ERUN locks.

parent c092846a
No related branches found
No related tags found
No related merge requests found
......@@ -145,6 +145,8 @@ src/tools/get_active_nodes*
src/tools/learning_validate*
src/tools/ear_events*
src/tools/ear_conf
src/tools/get_periodic
src/tools/metrics_show
src/commands/ear-info
......@@ -47,7 +47,7 @@ int lock_master(char *path_tmp, int job_id)
plug_verbose(_sp, 3, "function lock_master");
// Creating temp folder
if ((access(path_tmp, W_OK) != 0) && (errno == ENOENT)) {
mkdir(path_job, PERMS(111,000,000));
mkdir(path_tmp, PERMS(111,000,000));
}
// Creating erun folder
sprintf(path_job, "%s/erun", path_tmp);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment