22 lines
386 B
Python
22 lines
386 B
Python
from typing import override
|
|
|
|
from archinstall.default_profiles.profile import Profile, ProfileType
|
|
|
|
|
|
class LighttpdProfile(Profile):
|
|
def __init__(self) -> None:
|
|
super().__init__(
|
|
'Lighttpd',
|
|
ProfileType.ServerType,
|
|
)
|
|
|
|
@property
|
|
@override
|
|
def packages(self) -> list[str]:
|
|
return ['lighttpd']
|
|
|
|
@property
|
|
@override
|
|
def services(self) -> list[str]:
|
|
return ['lighttpd']
|