From eb2174eef92208da9b3e5ea80df54e216b68313b Mon Sep 17 00:00:00 2001 From: "Dylan M. Taylor" Date: Thu, 29 Apr 2021 06:57:52 -0400 Subject: Add nginx profile --- profiles/applications/nginx.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 profiles/applications/nginx.py (limited to 'profiles/applications') 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') -- cgit v1.2.3-54-g00ecf