mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

13 lines
311 B

#! /bin/bash
if any_installed ".*\.so"; then
echo "dynamic libraries installed, run ldconfig!"
fi
if any_removed ".*\.so"; then
echo "dynamic libraries removed, run ldconfig!"
fi
all_installed ".*" | while read M; do echo "Installed: $M"; done
all_removed ".*" | while read M; do echo "Removed: $M"; done