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 06:57:52 -0400
committerGitHub <noreply@github.com>2021-04-29 06:57:52 -0400
commiteb2174eef92208da9b3e5ea80df54e216b68313b (patch)
treefd1353ac2f1b531af8ac38cf4a38c9d7aee6dfc7 /profiles/applications
parentaa0f4327260ab39077999859c593ed6d5c12822c (diff)
Add nginx profile
Diffstat (limited to 'profiles/applications')
-rw-r--r--profiles/applications/nginx.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/profiles/applications/nginx.py b/profiles/applications/nginx.py
new file mode 100644
index 00000000..50eb0506
--- /dev/null
+++ b/profiles/applications/nginx.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__ = ["nginx"]
+
+installation.add_additional_packages(__packages__)
+
+installation.enable_service('nginx')