Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Taylor <dylan@dylanmtaylor.com>2021-04-29 10:22:42 -0400
committerDylan Taylor <dylan@dylanmtaylor.com>2021-04-29 10:22:42 -0400
commit8b6ee6f3035479881d2cc228336c99a7b25fd009 (patch)
treedf954f24e4a239c30d64c0d18e8f6315d0f04a97
parent3c5dd7b335f0618046bacc03900a4b8b354309cd (diff)
parenta739326be471d1fc8738d3f229e45d7b4f93f0cf (diff)
Merge branch 'master' into patch-1
-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')