blob: 00aa55640887c3075bf4b1aad39282a41ebc1f22 (
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 LighttpdProfile(Profile):
def __init__(self):
super().__init__(
'Lighttpd',
ProfileType.ServerType
)
@property
def packages(self) -> List[str]:
return ['lighttpd']
@property
def services(self) -> List[str]:
return ['lighttpd']
|