apparmor.d/root/usr/share/zsh/site-functions/_aa-log.zsh
2023-04-19 19:02:42 +01:00

24 lines
497 B
Bash

#compdef aa-log
#autoload
_aa-log() {
local IFS=$'\n'
_arguments : \
{-f,--file}'[set a logfile or a suffix to the default log file]:FILE:__aa_files' \
{-s,--systemd}'[parse systemd logs from journalctl]' \
{-h,--help}'[display help information]'
_values -C 'profile names' ${$(__aa_profiles):-""}
}
__aa_files() {
find /var/log/audit/ -type f -printf '%P\n' | cut -d '.' -f 3
_files
}
__aa_profiles() {
find -L /etc/apparmor.d -maxdepth 1 -type f -printf '%P\n' | sort
}
_aa-log