index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Dylan Taylor <dylan@dylanmtaylor.com> | 2021-04-29 10:22:42 -0400 |
---|---|---|
committer | Dylan Taylor <dylan@dylanmtaylor.com> | 2021-04-29 10:22:42 -0400 |
commit | 8b6ee6f3035479881d2cc228336c99a7b25fd009 (patch) | |
tree | df954f24e4a239c30d64c0d18e8f6315d0f04a97 | |
parent | 3c5dd7b335f0618046bacc03900a4b8b354309cd (diff) | |
parent | a739326be471d1fc8738d3f229e45d7b4f93f0cf (diff) |
-rw-r--r-- | profiles/applications/sshd.py | 9 |
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') |