mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-14 14:48:25 +00:00
Imported using git-ubuntu import. Changelog parent: a127372488a96d66ac9147d224c26e752fbeb873 New changelog entries: * Precompiling apparmor policies on touch
10 lines
457 B
Bash
Executable File
10 lines
457 B
Bash
Executable File
#!/bin/sh
|
|
|
|
FEATURES=/var/cache/apparmor/.features
|
|
|
|
echo "I: precompiling click apparmor policies"
|
|
/sbin/apparmor_parser -M ${FEATURES} -Q --write-cache --cache-loc=/var/cache/apparmor/ `find /var/lib/apparmor/profiles/ -maxdepth 1 -type f -not -path '*/\.*'`
|
|
|
|
echo "I: precompiling deb apparmor policies"
|
|
/sbin/apparmor_parser -M ${FEATURES} -Q --write-cache --cache-loc=/etc/apparmor.d/cache/ `find /etc/apparmor.d/ -maxdepth 1 -type f -not -path '*/\.*'`
|