11 lines
180 B
Bash
Executable File
11 lines
180 B
Bash
Executable File
#!/bin/bash
|
|
##makedesc: Uninstall apache2
|
|
source "$( dirname $(readlink -e -- "${BASH_SOURCE}"))/../helpers.sh" || exit 255
|
|
|
|
title
|
|
|
|
apt_remove apache2
|
|
|
|
success "apache2 removed!"
|
|
|