diff --git a/dots/archinstall/common/services.txt b/dots/archinstall/common/services.txt index c49fa63..3634d65 100644 --- a/dots/archinstall/common/services.txt +++ b/dots/archinstall/common/services.txt @@ -1,4 +1,4 @@ -; # services +# services # lemurs.service cups.service diff --git a/dots/archinstall/t470p/services.txt b/dots/archinstall/t470p/services.txt index 103a29a..b1cca25 100644 --- a/dots/archinstall/t470p/services.txt +++ b/dots/archinstall/t470p/services.txt @@ -1,3 +1,3 @@ -; # services +# services nohang.service diff --git a/dots/archinstall/tuxwarrior/services.txt b/dots/archinstall/tuxwarrior/services.txt index e7d3105..a0b12d7 100644 --- a/dots/archinstall/tuxwarrior/services.txt +++ b/dots/archinstall/tuxwarrior/services.txt @@ -1 +1 @@ -; # services +# services diff --git a/scripts/99_software.sh b/scripts/99_software.sh index 35e2997..ee0909a 100755 --- a/scripts/99_software.sh +++ b/scripts/99_software.sh @@ -160,6 +160,11 @@ do_services() { list=() for x in ${services[@]} do + + if [[ "${x}" =~ ^#.* ]]; then + continue + fi + echo "systemctl enable ${x}" systemctl enable ${x} done