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

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