This commit is contained in:
committer@tuxwarrior
2025-04-19 15:10:58 -05:00
parent c648fcdf83
commit 9cb1d523bb

View File

@@ -157,9 +157,9 @@ do_services() {
mapfile -t services < ${trg_file}
list=()
for x in ${services[@]}
do
for x in ${services[@]}; do
echo ">>> ${x}"
if [[ "${x}" =~ ^#.* ]]; then
echo "skipping comment ${x}"
@@ -167,7 +167,8 @@ do_services() {
fi
echo "systemctl enable ${x}"
systemctl enable ${x}
# systemctl enable ${x}
done
}