aboutsummaryrefslogtreecommitdiff
path: root/src/property/sshd.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'src/property/sshd.lisp')
-rw-r--r--src/property/sshd.lisp31
1 files changed, 31 insertions, 0 deletions
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)))