aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-04-01 12:34:33 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-04-01 15:47:54 -0700
commitf95b25081cb4ab287486843cd29291c3293169f3 (patch)
tree7d4f8cd44d5fdbed44bfeb5a27301466e77d4d3d
parent729fd0ef5d4f78bc86f2a497c06cecbc2b4fa571 (diff)
downloadconsfigurator-f95b25081cb4ab287486843cd29291c3293169f3.tar.gz
add SSHD:INSTALLED, SSHD:CONFIGURED
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
-rw-r--r--consfigurator.asd1
-rw-r--r--src/package.lisp9
-rw-r--r--src/property/sshd.lisp31
3 files changed, 41 insertions, 0 deletions
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 <spwhitton@spwhitton.name>
+
+;;; 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 <http://www.gnu.org/licenses/>.
+
+(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)))