index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton@hvornum.se> | 2021-04-29 11:35:39 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-29 11:35:39 +0000 |
commit | fb56fa3c5f3b76773d5c6a00a97f4dfdda5cc573 (patch) | |
tree | bca33fdb0a13280e5f83e0ca34de442d89aa832b /profiles/applications | |
parent | a94cea235d2a111280e2048b52c271a1393396ee (diff) | |
parent | 9d5e9333c7a44dbdf6d3008a6ba61620b7e4d040 (diff) |
-rw-r--r-- | profiles/applications/lighttpd.py | 9 |
diff --git a/profiles/applications/lighttpd.py b/profiles/applications/lighttpd.py new file mode 100644 index 00000000..a1e6a371 --- /dev/null +++ b/profiles/applications/lighttpd.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__ = ["lighttpd"] + +installation.add_additional_packages(__packages__) + +installation.enable_service('lighttpd') |