index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Dylan M. Taylor <dylan@dylanmtaylor.com> | 2021-04-29 08:01:15 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-29 08:01:15 -0400 |
commit | c3bb503fab0cca1b5eb92a13b9aac40c4686141e (patch) | |
tree | 540e76f475e6a5155bf7a219c3148d1b9bb4df13 | |
parent | fb56fa3c5f3b76773d5c6a00a97f4dfdda5cc573 (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') |