commit
1582661da9
3 changed files with 7 additions and 7 deletions
4
cdist/conf/type/__apt_mark/explorer/apt_version
Normal file → Executable file
4
cdist/conf/type/__apt_mark/explorer/apt_version
Normal file → Executable file
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh
|
||||
#!/bin/sh -e
|
||||
#
|
||||
# 2016 Ander Punnar (cdist at kvlt.ee)
|
||||
#
|
||||
|
@ -26,6 +26,6 @@ apt_version_is=$(dpkg-query --show --showformat '${Version}' apt)
|
|||
|
||||
apt_version_should=0.8.14.2
|
||||
|
||||
dpkg --compare-versions $apt_version_should le $apt_version_is \
|
||||
dpkg --compare-versions "$apt_version_should" le "$apt_version_is" \
|
||||
&& echo 0 \
|
||||
|| echo 1
|
||||
|
|
6
cdist/conf/type/__apt_mark/explorer/package_installed
Normal file → Executable file
6
cdist/conf/type/__apt_mark/explorer/package_installed
Normal file → Executable file
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh
|
||||
#!/bin/sh -e
|
||||
#
|
||||
# 2016 Ander Punnar (cdist at kvlt.ee)
|
||||
#
|
||||
|
@ -24,7 +24,7 @@ else
|
|||
name="$__object_id"
|
||||
fi
|
||||
|
||||
dpkg-query --show --showformat '${Status}' $name 2>/dev/null \
|
||||
| grep -q 'ok installed' \
|
||||
dpkg-query --show --showformat '${Status}' "$name" 2>/dev/null \
|
||||
| grep -Fq 'ok installed' \
|
||||
&& echo 0 \
|
||||
|| echo 1
|
||||
|
|
4
cdist/conf/type/__apt_mark/explorer/state
Normal file → Executable file
4
cdist/conf/type/__apt_mark/explorer/state
Normal file → Executable file
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh
|
||||
#!/bin/sh -e
|
||||
#
|
||||
# 2016 Ander Punnar (cdist at kvlt.ee)
|
||||
#
|
||||
|
@ -24,4 +24,4 @@ else
|
|||
name="$__object_id"
|
||||
fi
|
||||
|
||||
apt-mark showhold | grep -q $name && echo hold || echo unhold
|
||||
apt-mark showhold | grep -Fq "$name" && echo hold || echo unhold
|
||||
|
|
Loading…
Reference in a new issue