index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton@hvornum.se> | 2021-04-29 12:11:42 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-29 12:11:42 +0000 |
commit | a739326be471d1fc8738d3f229e45d7b4f93f0cf (patch) | |
tree | 540e76f475e6a5155bf7a219c3148d1b9bb4df13 /profiles | |
parent | fb56fa3c5f3b76773d5c6a00a97f4dfdda5cc573 (diff) | |
parent | c3bb503fab0cca1b5eb92a13b9aac40c4686141e (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') |