feat(profiles): reorganise the cron & run-parts profiles.
This commit is contained in:
parent
cc78beddda
commit
9d81f5e88f
4 changed files with 157 additions and 105 deletions
|
|
@ -14,59 +14,130 @@ profile run-parts @{exec_path} {
|
|||
|
||||
@{exec_path} mr,
|
||||
|
||||
# This is for motd PAM module (see: /etc/pam.d/login) when "noupdate" isn't specified
|
||||
# Crontrab
|
||||
/etc/cron.{hourly,daily,weekly,monthly}/ r,
|
||||
/etc/cron.{hourly,daily,weekly,monthly}/0anacron rPx,
|
||||
/etc/cron.{hourly,daily,weekly,monthly}/apport rPx,
|
||||
/etc/cron.{hourly,daily,weekly,monthly}/apt-compat rPx,
|
||||
/etc/cron.{hourly,daily,weekly,monthly}/apt-listbugs rPx,
|
||||
/etc/cron.{hourly,daily,weekly,monthly}/apt-show-versions rPx,
|
||||
/etc/cron.{hourly,daily,weekly,monthly}/apt-xapian-index rPx,
|
||||
/etc/cron.{hourly,daily,weekly,monthly}/aptitude rPx,
|
||||
/etc/cron.{hourly,daily,weekly,monthly}/bsdmainutils rPUx,
|
||||
/etc/cron.{hourly,daily,weekly,monthly}/checksecurity rPUx,
|
||||
/etc/cron.{hourly,daily,weekly,monthly}/cracklib-runtime rPx,
|
||||
/etc/cron.{hourly,daily,weekly,monthly}/debsums rPx,
|
||||
/etc/cron.{hourly,daily,weekly,monthly}/debtags rPx,
|
||||
/etc/cron.{hourly,daily,weekly,monthly}/dlocate rPx,
|
||||
/etc/cron.{hourly,daily,weekly,monthly}/dpkg rPUx,
|
||||
/etc/cron.{hourly,daily,weekly,monthly}/etckeeper rPx,
|
||||
/etc/cron.{hourly,daily,weekly,monthly}/exim4-base rPx,
|
||||
/etc/cron.{hourly,daily,weekly,monthly}/logrotate rPx,
|
||||
/etc/cron.{hourly,daily,weekly,monthly}/man-db rPx,
|
||||
/etc/cron.{hourly,daily,weekly,monthly}/mlocate rPx,
|
||||
/etc/cron.{hourly,daily,weekly,monthly}/passwd rPUx,
|
||||
/etc/cron.{hourly,daily,weekly,monthly}/plocate rPx,
|
||||
/etc/cron.{hourly,daily,weekly,monthly}/popularity-contest rPx,
|
||||
/etc/cron.{hourly,daily,weekly,monthly}/spamassassin rPUx,
|
||||
/etc/cron.{hourly,daily,weekly,monthly}/sysstat rPx,
|
||||
/etc/cron.{hourly,daily,weekly,monthly}/tor rPUx,
|
||||
/etc/cron.{hourly,daily,weekly,monthly}/vrms rPUx,
|
||||
|
||||
# Network
|
||||
/etc/network/if-down.d/ r,
|
||||
/etc/network/if-down.d/openvpn rPUx,
|
||||
/etc/network/if-down.d/resolvconf rPUx,
|
||||
/etc/network/if-down.d/wpasupplicant rPUx,
|
||||
|
||||
/etc/hostapd/ifupdown.sh rPUx,
|
||||
/etc/macchanger/ifupdown.sh rPUx,
|
||||
/etc/wpa_supplicant/ifupdown.sh rPUx,
|
||||
|
||||
/etc/network/if-post-down.d/ r,
|
||||
/etc/network/if-post-down.d/bridge rPUx,
|
||||
/etc/network/if-post-down.d/chrony rPUx,
|
||||
/etc/network/if-post-down.d/hostapd rPUx,
|
||||
/etc/network/if-post-down.d/ifenslave rPUx,
|
||||
/etc/network/if-post-down.d/macchanger rPUx,
|
||||
/etc/network/if-post-down.d/wireless-tools rPUx,
|
||||
/etc/network/if-post-down.d/wpasupplicant rPUx,
|
||||
|
||||
/etc/network/if-pre-up.d/ r,
|
||||
/etc/network/if-pre-up.d/bridge rPUx,
|
||||
/etc/network/if-pre-up.d/ethtool rPUx,
|
||||
/etc/network/if-pre-up.d/hostapd rPUx,
|
||||
/etc/network/if-pre-up.d/ifenslave rPUx,
|
||||
/etc/network/if-pre-up.d/macchanger rPUx,
|
||||
/etc/network/if-pre-up.d/random-secret rPUx,
|
||||
/etc/network/if-pre-up.d/wireless-tools rPUx,
|
||||
/etc/network/if-pre-up.d/wpasupplicant rPUx,
|
||||
|
||||
/etc/network/if-up.d/ r,
|
||||
/etc/network/if-up.d/*resolvconf rPUx,
|
||||
/etc/network/if-up.d/avahi-autoipd rPUx,
|
||||
/etc/network/if-up.d/chrony rPUx,
|
||||
/etc/network/if-up.d/ethtool rPUx,
|
||||
/etc/network/if-up.d/ifenslave rPUx,
|
||||
/etc/network/if-up.d/openvpn rPUx,
|
||||
/etc/network/if-up.d/wpasupplicant rPUx,
|
||||
|
||||
# Motd
|
||||
/etc/update-motd.d/ r,
|
||||
/etc/update-motd.d/[0-9]*-[a-z]* rCx -> motd,
|
||||
|
||||
# The "/etc/kernel/" dirs are for the pre/post scripts of the linux-{header,image} packages
|
||||
# Kernel
|
||||
/etc/kernel/header_postinst.d/ r,
|
||||
/etc/kernel/header_postinst.d/dkms rCx -> kernel-pre-post,
|
||||
/etc/kernel/header_postinst.d/dkms rCx -> kernel,
|
||||
|
||||
/etc/kernel/postinst.d/ r,
|
||||
/etc/kernel/postinst.d/apt-auto-removal rCx -> kernel-pre-post,
|
||||
/etc/kernel/postinst.d/dkms rCx -> kernel-pre-post,
|
||||
/etc/kernel/postinst.d/initramfs-tools rCx -> kernel-pre-post,
|
||||
/etc/kernel/postinst.d/unattended-upgrades rCx -> kernel-pre-post,
|
||||
/etc/kernel/postinst.d/zz-update-grub rCx -> kernel-pre-post,
|
||||
/etc/kernel/postinst.d/apt-auto-removal rCx -> kernel,
|
||||
/etc/kernel/postinst.d/dkms rCx -> kernel,
|
||||
/etc/kernel/postinst.d/initramfs-tools rCx -> kernel,
|
||||
/etc/kernel/postinst.d/unattended-upgrades rCx -> kernel,
|
||||
/etc/kernel/postinst.d/zz-update-grub rCx -> kernel,
|
||||
|
||||
/etc/kernel/postrm.d/ r,
|
||||
/etc/kernel/postrm.d/initramfs-tools rCx -> kernel-pre-post,
|
||||
/etc/kernel/postrm.d/zz-update-grub rCx -> kernel-pre-post,
|
||||
/etc/kernel/postrm.d/initramfs-tools rCx -> kernel,
|
||||
/etc/kernel/postrm.d/zz-update-grub rCx -> kernel,
|
||||
|
||||
/etc/kernel/preinst.d/ r,
|
||||
/etc/kernel/preinst.d/intel-microcode rCx -> kernel-pre-post,
|
||||
/etc/kernel/preinst.d/intel-microcode rCx -> kernel,
|
||||
|
||||
/etc/kernel/prerm.d/ r,
|
||||
/etc/kernel/prerm.d/dkms rCx -> kernel-pre-post,
|
||||
|
||||
/etc/molly-guard/run.d/ r,
|
||||
/etc/cron.hourly/ r,
|
||||
/etc/kernel/prerm.d/dkms rCx -> kernel,
|
||||
|
||||
owner /tmp/#[0-9]*[0-9] rw,
|
||||
|
||||
owner /tmp/file* rw,
|
||||
|
||||
profile motd {
|
||||
include <abstractions/base>
|
||||
|
||||
/ r,
|
||||
/etc/update-motd.d/[0-9]*-[a-z]* r,
|
||||
|
||||
/{usr/,}bin/{,ba,da}sh rix,
|
||||
/{usr/,}bin/cat rix,
|
||||
/{usr/,}bin/cut rix,
|
||||
/{usr/,}bin/find rix,
|
||||
/{usr/,}bin/grep rix,
|
||||
/{usr/,}bin/id rix,
|
||||
/{usr/,}bin/tr rix,
|
||||
/{usr/,}bin/uname rix,
|
||||
|
||||
/{usr/,}lib/ubuntu-release-upgrader/release-upgrade-motd rPx,
|
||||
/{usr/,}lib/update-notifier/update-motd-fsck-at-reboot rPx,
|
||||
/{usr/,}lib/update-notifier/update-motd-reboot-required rix,
|
||||
/usr/share/unattended-upgrades/update-motd-unattended-upgrades rix,
|
||||
|
||||
/ r,
|
||||
/etc/lsb-release r,
|
||||
/etc/update-motd.d/[0-9]*-[a-z]* r,
|
||||
|
||||
/var/lib/update-notifier/updates-available r,
|
||||
|
||||
}
|
||||
|
||||
profile kernel-pre-post {
|
||||
profile kernel {
|
||||
include <abstractions/base>
|
||||
include <abstractions/consoles>
|
||||
|
||||
/etc/kernel/header_postinst.d/* r,
|
||||
/etc/kernel/{postinst,postrm,preinst,prerm}.d/* r,
|
||||
|
||||
/{usr/,}bin/{,ba,da}sh rix,
|
||||
/{usr/,}bin/{,e}grep rix,
|
||||
/{usr/,}bin/cat rix,
|
||||
|
|
@ -85,17 +156,20 @@ profile run-parts @{exec_path} {
|
|||
/{usr/,}bin/uname rix,
|
||||
/{usr/,}bin/which{,.debianutils} rix,
|
||||
|
||||
/{usr/,}{s,}bin/dkms rPx,
|
||||
/{usr/,}{s,}bin/update-grub rPUx,
|
||||
/{usr/,}{s,}bin/update-initramfs rPx,
|
||||
/{usr/,}bin/apt-config rPx,
|
||||
/{usr/,}bin/dpkg rPx -> child-dpkg,
|
||||
/{usr/,}bin/systemd-detect-virt rPx,
|
||||
/{usr/,}lib/dkms/dkms_autoinstaller rPx,
|
||||
/{usr/,}sbin/dkms rPx,
|
||||
/{usr/,}sbin/update-grub rPUx,
|
||||
/{usr/,}sbin/update-initramfs rPx,
|
||||
|
||||
/{usr/,}lib/modules/*/updates/ w,
|
||||
/{usr/,}lib/modules/*/updates/dkms/ w,
|
||||
|
||||
/etc/kernel/header_postinst.d/* r,
|
||||
/etc/kernel/{postinst,postrm,preinst,prerm}.d/* r,
|
||||
|
||||
# For shell pwd
|
||||
/ r,
|
||||
/boot/ r,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue