mirror of https://codeberg.org/hako/Rosenthal.git
* rosenthal/services/dns.scm: New file. (smartdns-configuration,smartdns-shepherd-service,smartdns-service-type): New variables.remotes/origin/cloudflared-unbundle
parent
5e809cd80d
commit
a1e7e1df3c
1 changed files with 47 additions and 0 deletions
@ -0,0 +1,47 @@ |
|||||||
|
;; SPDX-FileCopyrightText: 2022 Hilton Chain <hako@ultrarare.space> |
||||||
|
;; |
||||||
|
;; SPDX-License-Identifier: GPL-3.0-or-later |
||||||
|
|
||||||
|
(define-module (rosenthal services dns) |
||||||
|
#:use-module (ice-9 match) |
||||||
|
#:use-module (guix gexp) |
||||||
|
#:use-module (guix packages) |
||||||
|
#:use-module (gnu services) |
||||||
|
#:use-module (gnu services configuration) |
||||||
|
#:use-module (gnu services shepherd) |
||||||
|
#:use-module (rosenthal packages dns) |
||||||
|
#:export (smartdns-configuration |
||||||
|
smartdns-service-type)) |
||||||
|
|
||||||
|
;; |
||||||
|
;; Smartdns |
||||||
|
;; |
||||||
|
|
||||||
|
(define-configuration/no-serialization smartdns-configuration |
||||||
|
(smartdns |
||||||
|
(package smartdns) |
||||||
|
"The Smartdns package.") |
||||||
|
(config |
||||||
|
(file-like (plain-file "empty" "")) |
||||||
|
"Configuration file for Smartdns.")) |
||||||
|
|
||||||
|
(define smartdns-shepherd-service |
||||||
|
(match-lambda |
||||||
|
(($ <smartdns-configuration> smartdns config) |
||||||
|
(list (shepherd-service |
||||||
|
(documentation "Run smartdns.") |
||||||
|
(provision '(smartdns dns)) |
||||||
|
(requirement '(loopback networking)) |
||||||
|
(start #~(make-forkexec-constructor |
||||||
|
(list #$(file-append smartdns "/sbin/smartdns") |
||||||
|
"-f" "-x" "-c" #$(file-append config)))) |
||||||
|
(stop #~(make-kill-destructor))))))) |
||||||
|
|
||||||
|
(define smartdns-service-type |
||||||
|
(service-type |
||||||
|
(name 'smartdns) |
||||||
|
(extensions |
||||||
|
(list (service-extension shepherd-root-service-type |
||||||
|
smartdns-shepherd-service))) |
||||||
|
(default-value (smartdns-configuration)) |
||||||
|
(description "Run Smartdns daemon."))) |
Loading…
Reference in new issue