Make grep more specific #352

Merged
nico merged 1 commits from marcoduif/cdist:master into master 2022-12-20 17:02:17 +00:00
1 changed files with 1 additions and 1 deletions

View File

@ -24,4 +24,4 @@ else
name="$__object_id"
fi
apt-mark showhold | grep -Fq "$name" && echo hold || echo unhold
apt-mark showhold | grep -q "^${name}$" && echo hold || echo unhold