From 9e8446a96abbd406fa8c037d008d0ada593de227 Mon Sep 17 00:00:00 2001 From: "Dylan M. Taylor" Date: Thu, 29 Apr 2021 07:09:46 -0400 Subject: Add Tomcat application profile Using Tomcat 10 as that is the latest release --- profiles/applications/tomcat.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 profiles/applications/tomcat.py diff --git a/profiles/applications/tomcat.py b/profiles/applications/tomcat.py new file mode 100644 index 00000000..9c521390 --- /dev/null +++ b/profiles/applications/tomcat.py @@ -0,0 +1,12 @@ +import archinstall + +# This is using Tomcat 10 as that is the latest release at the time of implementation. +# This should probably be updated to use newer releases as they come out. + +# Define the package list in order for lib to source +# which packages will be installed by this profile +__packages__ = ["tomcat10"] + +installation.add_additional_packages(__packages__) + +installation.enable_service('tomcat10') -- cgit v1.2.3-54-g00ecf