blob: 9bd8837babbdc55ee52dd190edb2d75a593c9ac6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
from typing import List
from archinstall.default_profiles.profile import Profile, ProfileType
class TomcatProfile(Profile):
def __init__(self):
super().__init__(
'Tomcat',
ProfileType.ServerType
)
@property
def packages(self) -> List[str]:
return ['tomcat10']
@property
def services(self) -> List[str]:
return ['tomcat10']
|