70fdd1c6c2
Former-commit-id: f6cc81252f86c8ef8949e201f103c3054b0cea5e
15 lines
274 B
Bash
Executable File
15 lines
274 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "x$1" == "xconfigure" ] && [ -x /usr/sbin/update-ca-certificates ]; then
|
|
if [ ! -f /var/lib/dpkg/triggers/update-ca-certificates ]; then
|
|
/usr/sbin/update-ca-certificates
|
|
else
|
|
/usr/bin/dpkg-trigger update-ca-certificates
|
|
fi
|
|
fi
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|
|
|