diff --git a/glicid/services/parallel.scm b/glicid/services/parallel.scm index 60645c6..35413b9 100644 --- a/glicid/services/parallel.scm +++ b/glicid/services/parallel.scm @@ -242,7 +242,11 @@ (chown "/var/lib/slurm" (passwd:uid (getpwnam "slurm")) (passwd:gid (getpwnam "slurm"))) (chown "/var/spool/slurmctld" (passwd:uid (getpwnam "slurm")) (passwd:gid (getpwnam "slurm"))) (chown "/etc/slurm" (passwd:uid (getpwnam "slurm")) (passwd:gid (getpwnam "slurm"))) - (for-each (lambda (slurm-file) (chown slurm-file (passwd:uid (getpwnam "slurm")) (passwd:gid (getpwnam "slurm"))))) + (for-each (lambda (slurm-file) + (chown slurm-file (passwd:uid (getpwnam "slurm")) (passwd:gid (getpwnam "slurm"))) + ) + (find-files "/etc/slurm") + ) #t ) )