Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/profiles/applications
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-04-29 11:35:39 +0000
committerGitHub <noreply@github.com>2021-04-29 11:35:39 +0000
commitfb56fa3c5f3b76773d5c6a00a97f4dfdda5cc573 (patch)
treebca33fdb0a13280e5f83e0ca34de442d89aa832b /profiles/applications
parenta94cea235d2a111280e2048b52c271a1393396ee (diff)
parent9d5e9333c7a44dbdf6d3008a6ba61620b7e4d040 (diff)
Merge pull request #390 from dylanmtaylor/patch-9
Add lighttpd application profile
Diffstat (limited to 'profiles/applications')
-rw-r--r--profiles/applications/lighttpd.py9
1 files changed, 9 insertions, 0 deletions
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')