diff options
Diffstat (limited to 'community/sysprof/sysprof.install')
-rw-r--r-- | community/sysprof/sysprof.install | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/community/sysprof/sysprof.install b/community/sysprof/sysprof.install new file mode 100644 index 000000000..489df2262 --- /dev/null +++ b/community/sysprof/sysprof.install @@ -0,0 +1,12 @@ +post_install() { + depmod -a +} + +post_upgrade() { + post_install $1 +} + +post_remove() { + post_install $1 +} + |