Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/profiles/applications
diff options
context:
space:
mode:
authorDylan M. Taylor <dylan@dylanmtaylor.com>2021-04-29 07:03:57 -0400
committerGitHub <noreply@github.com>2021-04-29 07:03:57 -0400
commit5c6cd59aecde69c85676235ef0e739fba59a55fd (patch)
treee937b327731062802279ae87b60a5de3d5304463 /profiles/applications
parentaa0f4327260ab39077999859c593ed6d5c12822c (diff)
Add Apache HTTPD Application Profile
Diffstat (limited to 'profiles/applications')
-rw-r--r--profiles/applications/httpd.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/profiles/applications/httpd.py b/profiles/applications/httpd.py
new file mode 100644
index 00000000..00d64b6e
--- /dev/null
+++ b/profiles/applications/httpd.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__ = ["apache"]
+
+installation.add_additional_packages(__packages__)
+
+installation.enable_service('httpd')