1 2 3 4 5 6 7 8 9 10 11 12 13
post_install() { mkdir -p /usr/lib/license if [ ! -f /usr/lib/license/libuosdevicea.so ]; then touch /usr/lib/license/libuosdevicea.so fi } post_remove() { if [ -f /usr/lib/license/libuosdevicea.so ]; then rm /usr/lib/license/libuosdevicea.so rmdir /usr/lib/license fi }