blob: 00d64b6eb3b665c38ba967d7320562c3447d24b3 (
plain)
1
2
3
4
5
6
7
8
9
|
import archinstall
# Define the package list in order for lib to source
# which packages will be installed by this profile
__packages__ = ["apache"]
installation.add_additional_packages(__packages__)
installation.enable_service('httpd')
|