ASInstaller/profiles/applications/tomcat.py
2022-10-31 14:49:48 +08:00

13 lines
469 B
Python

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"]
archinstall.storage['installation_session'].add_additional_packages(__packages__)
archinstall.storage['installation_session'].enable_service('tomcat10')