This commit is contained in:
Jeffrey Serio 2024-11-24 05:11:12 -06:00
parent adced97c43
commit 9fbae11900

View File

@ -149,7 +149,6 @@ services_enable=(
firewalld.service
prometheus-node-exporter.service
rsyslog.service
sshd.service
systemd-networkd
tailscaled.service
)
@ -319,6 +318,11 @@ function disable_services() {
function enable_services() {
action_label "ENABLING SYSTEMD SERVICES"
for service in "${services_enable[@]}"; do sudo systemctl enable --now "$service"; done
if test -f /etc/debian_version; then
sudo systemctl enable --now ssh.service
elif test -f /etc/redhat-release; then
sudo systemctl enable --now sshd.service
fi
}
function disable_ipv6() {