From f95b25081cb4ab287486843cd29291c3293169f3 Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Thu, 1 Apr 2021 12:34:33 -0700 Subject: add SSHD:INSTALLED, SSHD:CONFIGURED Signed-off-by: Sean Whitton --- consfigurator.asd | 1 + src/package.lisp | 9 +++++++++ src/property/sshd.lisp | 31 +++++++++++++++++++++++++++++++ 3 files changed, 41 insertions(+) create mode 100644 src/property/sshd.lisp diff --git a/consfigurator.asd b/consfigurator.asd index c478b66..0ddb32c 100644 --- a/consfigurator.asd +++ b/consfigurator.asd @@ -34,6 +34,7 @@ (:file "src/property/user") (:file "src/property/git") (:file "src/property/gnupg") + (:file "src/property/sshd") (:file "src/connection/shell-wrap") (:file "src/connection/fork") (:file "src/connection/rehome") diff --git a/src/package.lisp b/src/package.lisp index 2294bfd..f6808d6 100644 --- a/src/package.lisp +++ b/src/package.lisp @@ -300,6 +300,15 @@ (:local-nicknames (#:file #:consfigurator.property.file)) (:export #:snapshot-extracted)) +(defpackage :consfigurator.property.sshd + (:use #:cl #:consfigurator) + (:local-nicknames (#:re #:cl-ppcre) + (#:os #:consfigurator.property.os) + (#:file #:consfigurator.property.file) + (#:apt #:consfigurator.property.apt)) + (:export #:installed + #:config-set)) + (defpackage :consfigurator.connection.shell-wrap (:use #:cl #:consfigurator) (:export #:shell-wrap-connection #:connection-shell-wrap)) diff --git a/src/property/sshd.lisp b/src/property/sshd.lisp new file mode 100644 index 0000000..e0807b2 --- /dev/null +++ b/src/property/sshd.lisp @@ -0,0 +1,31 @@ +;;; Consfigurator -- Lisp declarative configuration management system + +;;; Copyright (C) 2020-2021 Sean Whitton + +;;; This file 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, or (at your option) +;;; any later version. + +;;; This file 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 program. If not, see . + +(in-package :consfigurator.property.sshd) +(named-readtables:in-readtable :consfigurator) + +(defproplist installed :posix () + "Install an OpenSSH server." + (:desc "OpenSSH server installed") + (os:typecase + (debianlike (apt:installed "openssh-server")))) + +(defprop configured :posix (&rest pairs) + "Set key--value pairs in /etc/ssh/sshd_config." + (:desc (format nil "sshd configured ~{~A ~A~^, ~}" pairs)) + (:apply + (apply #'file:contains-conf-pairs "/home/spwhitton/tmp/config" pairs))) -- cgit v1.2.3