Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/profiles/applications
diff options
context:
space:
mode:
authorDylan M. Taylor <dylan@dylanmtaylor.com>2021-04-29 08:01:15 -0400
committerGitHub <noreply@github.com>2021-04-29 08:01:15 -0400
commitc3bb503fab0cca1b5eb92a13b9aac40c4686141e (patch)
tree540e76f475e6a5155bf7a219c3148d1b9bb4df13 /profiles/applications
parentfb56fa3c5f3b76773d5c6a00a97f4dfdda5cc573 (diff)
Add SSH Server Application Profile
Diffstat (limited to 'profiles/applications')
-rw-r--r--profiles/applications/sshd.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/profiles/applications/sshd.py b/profiles/applications/sshd.py
new file mode 100644
index 00000000..234638d5
--- /dev/null
+++ b/profiles/applications/sshd.py
@@ -0,0 +1,9 @@
+import archinstall
+
+# Define the package list in order for lib to source
+# which packages will be installed by this profile
+__packages__ = ["openssh"]
+
+installation.add_additional_packages(__packages__)
+
+installation.enable_service('sshd')