2021-12-22 13:51:22 +00:00
|
|
|
#!/bin/bash
|
2022-07-04 09:56:45 +00:00
|
|
|
##makedesc: Install apache2 (latest)
|
2024-11-24 13:13:37 +00:00
|
|
|
source "$( dirname $(readlink -e -- "${BASH_SOURCE}"))/../helpers.sh" || exit 255
|
2022-07-04 09:56:45 +00:00
|
|
|
|
2023-04-12 14:11:17 +00:00
|
|
|
title
|
2021-12-22 13:51:22 +00:00
|
|
|
|
2024-11-24 13:13:37 +00:00
|
|
|
apt_install apache2
|
|
|
|
sudo systemctl restart apache2
|
2023-04-11 15:43:14 +00:00
|
|
|
|
2024-11-24 13:13:37 +00:00
|
|
|
success "apache2 installed!"
|
|
|
|
apache2 -v
|