~ubuntu-core-dev/ubuntu/focal/apport/ubuntu

1
2
3
4
5
6
7
8
9
10
#!/bin/sh
set -e

if [ "$1" = configure ]; then
    # directory is required for package failures even if apport is disabled and
    # thus the upstart job does not run
    mkdir -p -m 1777 /var/crash
fi

#DEBHELPER#