aboutsummaryrefslogtreecommitdiff
path: root/po/packages/zh_CN.po
diff options
context:
space:
mode:
authorW. Kosior <koszko@koszko.org>2024-09-20 12:20:02 +0200
committerW. Kosior <koszko@koszko.org>2025-02-06 16:38:42 +0100
commitcff252986075a7dc1dee5927a4e2ababc611e763 (patch)
tree31ca0b1586b2833b9f91ec223bd0342f4dcc5978 /po/packages/zh_CN.po
parent45773c6f570974adc68bae5b872bd2b5554127b9 (diff)
downloadguix-cff252986075a7dc1dee5927a4e2ababc611e763.tar.gz
guix-cff252986075a7dc1dee5927a4e2ababc611e763.zip
services: openvpn: Allow client to pull DNS settings from server.
* gnu/services/vpn.scm (pull-dns?): New variable. (serialize-pull-dns): New variable. (make-up-down-config-options): New variable. (make-script-security-cli-options): New variable. (openvpn-client-configuration)[pull-dns?]: New field. (openvpn-config-file): Serialize that field. (openvpn-shepherd-service): Pass `--script-security' option to daemon. Change-Id: I1141dd0b9bf5956f13cf1552c2718b0a7035fa86
Diffstat (limited to 'po/packages/zh_CN.po')
0 files changed, 0 insertions, 0 deletions
rocedure. (mcron-shepherd-services): Add 'actions' field. * gnu/tests/base.scm (run-mcron-test)["schedule action"]: New test. * doc/guix.texi (Scheduled Job Execution): Mention 'herd schedule'. Ludovic Courtès 2018-01-21services: herd: 'with-shepherd' no longer leaves an open connection....* gnu/services/herd.scm (with-shepherd): Use 'dynamic-wind' and close CONNECTION at the end. Ludovic Courtès 2017-08-23services: herd: Actions return a list of results....Fixes a regression introduced in 0642838b2e9ab2bd988dccb64b9e1130006347bf. * gnu/services/herd.scm (invoke-action): Explain that we get a list of results. (current-services): Expect a list of result and use the first one. (unload-service, %load-file, eval-there): Likewise. Ludovic Courtès 2017-08-08services: herd: Add a stop-service procedure....* gnu/services/herd.scm (stop-service): New procedure. Christopher Baines 2017-08-08services: herd: Fix matching ok responses from shepherd service....Previously the match expression case for a successful response (where error is #f) required that the result component contained a list with a single element. As far as I see when looking at the responses from the shepherd, this is not normally the case. Therefore, to avoid treating successful responses as errors, make the match requirement more permissive, accepting any value. * gnu/services/herd.scm (invoke-action): Change match condition for ok responses. Christopher Baines 2017-05-03services: herd: Make %shepherd-socket-file a parameter and export it....* gnu/services/herd.scm (%shepherd-socket-file): Make it an exported parameter. (open-connection): Adapt. Mathieu Othacehe