Merge pull request #388 from dylanmtaylor/patch-7

Add Tomcat application profile
This commit is contained in:
Anton Hvornum 2021-04-29 11:35:09 +00:00 committed by GitHub
commit 6e646ebebf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 0 deletions

View File

@ -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')