🐛 saubermann: do not check /etc/sv/ssh for dangling symlinks

This commit is contained in:
neingeist 2021-11-26 09:21:15 +01:00
parent 4a0b7ea182
commit 036fd39041

View file

@ -1,5 +1,6 @@
#!/bin/sh
# check for common problems + junk
# https://github.com/neingeist/dirty-helpers
is_debian() {
@ -12,7 +13,7 @@ is_fedora() {
echo "== Dangling symlinks in /etc"
find /etc -type l -and -xtype l | egrep -v 'blkid.tab|/var/log/dropbear'
find /etc -type l -and -xtype l | egrep -v 'blkid.tab|/var/log/dropbear|/etc/sv/ssh'
echo "== Trashes"
for t in /home/*/.local/share/Trash; do