diff options
| author | Josselin Poiret <dev@jpoiret.xyz> | 2022-01-15 14:49:59 +0100 |
|---|---|---|
| committer | Mathieu Othacehe <othacehe@gnu.org> | 2022-01-17 08:27:22 +0100 |
| commit | d2d7fcf56495ebd4777a30eda0050ab6c80f5a62 (patch) | |
| tree | 0dec9185429caae9c4c31cd1764a8a691c6fd8f6 | |
| parent | 946420276f5374968030fa80ea4d69e57b8514f4 (diff) | |
installer: Remove specific logging code.
* gnu/installer/final.scm (install-system): Remove command logging to
syslog, as this is taken care of by the new facilities.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
| -rw-r--r-- | gnu/installer/final.scm | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/gnu/installer/final.scm b/gnu/installer/final.scm index 7d5eca4c7ee..63e5073ff44 100644 --- a/gnu/installer/final.scm +++ b/gnu/installer/final.scm | |||
| @@ -211,17 +211,7 @@ or #f. Return #t on success and #f on failure." | |||
| 211 | 211 | ||
| 212 | (setenv "PATH" path) | 212 | (setenv "PATH" path) |
| 213 | 213 | ||
| 214 | ;; If there are any connected clients, assume that we are running | 214 | (set! ret (run-command install-command))) |
| 215 | ;; installation tests. In that case, dump the standard and error | ||
| 216 | ;; outputs to syslog. | ||
| 217 | (set! ret | ||
| 218 | (if (not (null? (current-clients))) | ||
| 219 | (with-output-to-file "/dev/console" | ||
| 220 | (lambda () | ||
| 221 | (with-error-to-file "/dev/console" | ||
| 222 | (lambda () | ||
| 223 | (run-command install-command))))) | ||
| 224 | (run-command install-command)))) | ||
| 225 | (lambda () | 215 | (lambda () |
| 226 | ;; Restart guix-daemon so that it does no keep the MNT namespace | 216 | ;; Restart guix-daemon so that it does no keep the MNT namespace |
| 227 | ;; alive. | 217 | ;; alive. |
