2023-05-01 19:08:47 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
2021-03-24 15:25:00 -07:00
|
|
|
# second term originates from ENABLE_LDCONFIG = ON/OFF at package build
|
2023-09-15 02:59:28 -05:00
|
|
|
if [ "$1" -le 1 ] && [ "@ENABLE_LDCONFIG@" == "ON" ]; then
|
2022-02-24 09:59:02 -05:00
|
|
|
# perform the below actions for rpm remove($1=0) or upgrade($1=1) operations
|
2023-08-17 01:33:12 -05:00
|
|
|
rm -f /etc/ld.so.conf.d/x86_64-libamd_smi_lib.conf
|
2021-03-24 15:25:00 -07:00
|
|
|
ldconfig
|
|
|
|
|
fi
|