Change when plymouth is dismissed and prevent docker blocking

This commit is contained in:
Ryan Hughes
2025-07-18 04:37:47 -04:00
parent 45b5d3ea47
commit 19d45670ce
3 changed files with 30 additions and 0 deletions

View File

@ -11,3 +11,11 @@ sudo systemctl enable docker
# Give this user privileged Docker access
sudo usermod -aG docker ${USER}
# Prevent Docker from preventing boot for network-online.target
sudo tee /etc/systemd/system/docker.service.d/no-block-boot.conf <<'EOF'
[Unit]
DefaultDependencies=no
EOF
sudo systemctl daemon-reload

View File

@ -109,6 +109,15 @@ PAMName=login
WantedBy=graphical.target
EOF
# Make plymouth remain until graphical.target
sudo tee /etc/systemd/system/plymouth-quit.service.d/wait-for-graphical.conf <<'EOF'
[Unit]
After=multi-user.target
EOF
# Prevent plymouth-quit-wait.service
sudo systemctl unmask plymouth-quit-wait.service
sudo systemctl daemon-reload
sudo systemctl enable omarchy-seamless-login.service

13
migrations/1752797704.sh Normal file
View File

@ -0,0 +1,13 @@
echo "Prevent docker from requiring network readiness on boot"
sudo tee /etc/systemd/system/docker.service.d/no-block-boot.conf <<'EOF'
[Unit]
DefaultDependencies=no
EOF
sudo tee /etc/systemd/system/plymouth-quit.service.d/wait-for-graphical.conf <<'EOF'
[Unit]
After=multi-user.target
EOF
sudo systemctl daemon-reload
sudo systemctl unmask plymouth-quit-wait.service