archinstall/archinstall/default_profiles/servers/lighttpd.py

20 lines
351 B
Python

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']