9 lines
77 B
Bash
9 lines
77 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
#DEBHELPER#
|
|
|
|
if [ "$1" = "remove" ]; then
|
|
ldconfig
|
|
fi
|