index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton@hvornum.se> | 2021-04-29 11:34:50 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-29 11:34:50 +0000 |
commit | c930ff826e9f679d39d5574c804a39d7c7727d2a (patch) | |
tree | f0ada1e0b0818ca420cecbd227a14892ef715d69 /profiles | |
parent | 6b2ea318f3d26cd072f7aa2bc14ac06383dbfaef (diff) | |
parent | 5c6cd59aecde69c85676235ef0e739fba59a55fd (diff) |
-rw-r--r-- | profiles/applications/httpd.py | 9 |
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') |