installer: final: Remove left-over pk call.

* gnu/installer/final.scm (kill-cow-users): Remove pk call.
This commit is contained in:
Mathieu Othacehe 2020-06-09 12:33:38 +02:00
parent 5648ce07ff
commit ce16b07d10
No known key found for this signature in database
GPG key ID: 8354763531769CA6

View file

@ -127,7 +127,7 @@ (define %not-nul
(lambda (port)
(match (string-tokenize (read-string port) %not-nul)
((argv0 _ ...)
(unless (member (pk (basename argv0)) spare)
(unless (member (basename argv0) spare)
(syslog "Killing process ~a (~a)~%" pid argv0)
(kill pid SIGKILL)))
(_ #f))))))