2011-01-06 14:04:33 +01:00
|
|
|
#!/usr/bin/env bash
|
2011-01-06 14:21:38 +01:00
|
|
|
# Author: Oliver Ladner <oli@lugh.ch>
|
|
|
|
|
# License: LGPL
|
2011-01-06 14:04:33 +01:00
|
|
|
#
|
|
|
|
|
# Shows all applications using libssl
|
|
|
|
|
# They need to be restarted after an OpenSSL upgrade
|
|
|
|
|
|
|
|
|
|
lsof | grep libssl | awk {'print $1"\t "$3'} | sort | uniq
|