index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Dylan M. Taylor <dylan@dylanmtaylor.com> | 2021-04-29 06:57:52 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-29 06:57:52 -0400 |
commit | eb2174eef92208da9b3e5ea80df54e216b68313b (patch) | |
tree | fd1353ac2f1b531af8ac38cf4a38c9d7aee6dfc7 /profiles/applications | |
parent | aa0f4327260ab39077999859c593ed6d5c12822c (diff) |
-rw-r--r-- | profiles/applications/nginx.py | 9 |
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') |