services: hpcguix-web: Delete lock files during activation.
* gnu/services/web.scm (%hpcguix-web-activation): Delete ".lock" files from HOME-DIR.
This commit is contained in:
parent
1ce0d7e190
commit
7c34c62c80
@ -1049,13 +1049,22 @@ a webserver.")
|
||||
(define %hpcguix-web-activation
|
||||
(with-imported-modules '((guix build utils))
|
||||
#~(begin
|
||||
(use-modules (guix build utils))
|
||||
(use-modules (guix build utils)
|
||||
(ice-9 ftw))
|
||||
|
||||
(let ((home-dir "/var/cache/guix/web")
|
||||
(user (getpwnam "hpcguix-web")))
|
||||
(mkdir-p home-dir)
|
||||
(chown home-dir (passwd:uid user) (passwd:gid user))
|
||||
(chmod home-dir #o755)))))
|
||||
(chmod home-dir #o755)
|
||||
|
||||
;; Remove stale 'packages.json.lock' file (and other lock files, if
|
||||
;; any) since that would prevent 'packages.json' from being updated.
|
||||
(for-each (lambda (lock)
|
||||
(delete-file (string-append home-dir "/" lock)))
|
||||
(scandir home-dir
|
||||
(lambda (file)
|
||||
(string-suffix? ".lock" file))))))))
|
||||
|
||||
(define %hpcguix-web-log-file
|
||||
"/var/log/hpcguix-web.log")
|
||||
|
Loading…
Reference in New Issue
Block a user