kernel-livepatch-tools/cache-cleaner

10 lines
190 B
Plaintext
Raw Normal View History

#!/bin/bash
rm -f /var/cache/livepatch/*
for module in /sys/kernel/livepatch/*; do
/usr/bin/klp store_patch_info "${module#/sys/kernel/livepatch/}"
done
# vim: ai sw=4 et sts=4 ft=sh