From 6dcb90746cbf3be8f066bee6fd47cfda30a80e21 Mon Sep 17 00:00:00 2001 From: mcguirepr89 <60325264+mcguirepr89@users.noreply.github.com> Date: Mon, 4 Oct 2021 14:16:33 -0400 Subject: [PATCH] Update install_services.sh --- scripts/install_services.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/scripts/install_services.sh b/scripts/install_services.sh index f1881e4..7400407 100755 --- a/scripts/install_services.sh +++ b/scripts/install_services.sh @@ -319,6 +319,11 @@ EOF systemctl enable --now birdstats.service } +install_tmux_depends() { + echo "Installing tmux dependencies" + apt -qqy install libevent-2* +} + install_php() { if ! which pip &> /dev/null || ! which php-fpm7.3;then echo "Installing PHP and PHP-FPM" @@ -443,6 +448,7 @@ install_selected_services() { install_Caddyfile install_avahi_aliases install_gotty_logs + install_tmux_depends install_php fi