diff options
| author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2026-05-18 18:44:26 +0200 |
|---|---|---|
| committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2026-05-18 19:03:18 +0200 |
| commit | f58c3094abe55e42ade55d3f70b9fe523a116300 (patch) | |
| tree | 437b928a657bb94e420332d5d68134cd0f5e29a5 /deployment/services/networking.scm | |
| parent | c5ef8fabf00d6ed3cd35bfd51b411acc5e3ea014 (diff) | |
(services networking): install a service in aisaka to ensure interfaces are up before using them
Diffstat (limited to 'deployment/services/networking.scm')
| -rw-r--r-- | deployment/services/networking.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/deployment/services/networking.scm b/deployment/services/networking.scm new file mode 100644 index 0000000..a205fc4 --- /dev/null +++ b/deployment/services/networking.scm @@ -0,0 +1,28 @@ +;;; SPDX-License-Identifier: GPL-3.0-or-later +;;; SPDX-FileCopyrightText: 2026 Marek Paśnikowski <marek@marekpasnikowski.pl> + +;;; COPYRIGHT NOTICE +;;; +;;; Copyright 2026, Marek Paśnikowski <marek@marekpasnikowski.pl> + +;;; LICENSE NOTICE +;;; +;;; This library is free software: you can redistribute it and/or modify it under the terms of +;;; the GNU General Public License as published by the Free Software Foundation, +;;; either version 3 of the License, or (at your option) any later version. +;;; +;;; This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; +;;; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +;;; See the GNU General Public License for more details. +;;; +;;; You should have received a copy of the GNU General Public License along with this library. +;;; If not, see <https://www.gnu.org/licenses/>. + +(define-module (deployment services networking) + #:export (network-online-service-aisaka) + #:use-module ((sovereign services networking) + #:prefix sovereign:services:networking:)) + +(define network-online-service-aisaka sovereign:services:networking:network-online-throwaway-service) + +;;; EOF |
