diff options
author | Austin English <austinenglish@gmail.com> | 2016-05-20 01:05:19 -0500 |
---|---|---|
committer | Austin English <austinenglish@gmail.com> | 2016-05-22 20:21:40 -0500 |
commit | d59f54ea9e4d24483a6277822186e0a58859da42 (patch) | |
tree | 79bf2c5b43f7a35244dce5954ca29e5cd4840bd9 /config/chroot_local-hooks | |
parent | c63592a66b12f9681a5a9e8c14dd3a6923ee278d (diff) |
config/chroot_local-hooks/59-libdvd-pkg: verify libdvdcss package installation
Diffstat (limited to 'config/chroot_local-hooks')
-rwxr-xr-x | config/chroot_local-hooks/59-libdvd-pkg | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/config/chroot_local-hooks/59-libdvd-pkg b/config/chroot_local-hooks/59-libdvd-pkg index 9babf19..3d09e29 100755 --- a/config/chroot_local-hooks/59-libdvd-pkg +++ b/config/chroot_local-hooks/59-libdvd-pkg @@ -38,6 +38,13 @@ EOF ) rm -r "${tmp}" /usr/src/libdvd-pkg +# Verify installed packages: +for x in libdvd-css libdvd-pkg +do + dpkg -s $x + dpkg-query -W -f='${Version}\n' $x +done + # Remove dangling symlink -- note that we absolutely do not want the # functionality (automatic checks and upgrades for new css sources) # that the removed script provides. |