author | sandman <sandman> | 2002-12-22 17:17:56 (UTC) |
---|---|---|
committer | sandman <sandman> | 2002-12-22 17:17:56 (UTC) |
commit | 275ce580b85be3b439bbb907efce5036c3282c56 (patch) (side-by-side diff) | |
tree | 800a8fbd84355f0a80b7845be76f547d1885bd0f /library/opie-base.postinst | |
parent | c8a5bdd7d4b7de88708e88df797bd494eb6f7e71 (diff) | |
download | opie-275ce580b85be3b439bbb907efce5036c3282c56.zip opie-275ce580b85be3b439bbb907efce5036c3282c56.tar.gz opie-275ce580b85be3b439bbb907efce5036c3282c56.tar.bz2 |
call ldconfig in postinst for libraries (only if it is installed)
-rwxr-xr-x | library/opie-base.postinst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/library/opie-base.postinst b/library/opie-base.postinst index 1d50a99..c1aeef8 100755 --- a/library/opie-base.postinst +++ b/library/opie-base.postinst @@ -1,4 +1,4 @@ -#/bin/sh +#!/bin/sh ln -sf ../init.d/opie /etc/rc0.d/K98opie ln -sf ../init.d/opie /etc/rc1.d/K98opie @@ -8,4 +8,5 @@ ln -sf ../init.d/opie /etc/rc3.d/S98opie ln -sf ../init.d/opie /etc/rc4.d/S98opie ln -sf ../init.d/opie /etc/rc5.d/S98opie +[ -x ldconfig ] && ldconfig exit 0 |