Compare commits

...

1 Commits

Author SHA1 Message Date
Maksim Ivanov
f4bd58a9c5 Update 99fix-opera. Workaround for #28 2024-09-25 10:46:00 +03:00

View File

@@ -1,2 +1,2 @@
DPkg::Pre-Invoke {"stat -c %Z $(readlink -f $(which opera)) > /tmp/opera.timestamp";};
DPkg::Post-Invoke {"if [ `stat -c %Z $(readlink -f $(which opera))` -ne `cat /tmp/opera.timestamp` ]; then /root/.scripts/fix-opera.sh; fi; rm /tmp/opera.timestamp";};
DPkg::Pre-Invoke {"stat -c %Z $(readlink -f $(which opera)) > /tmp/opera.timestamp 2> /dev/null || echo 0 > /tmp/opera.timestamp";};
DPkg::Post-Invoke {"set NEW_OPERA=`stat -c %Z $(readlink -f $(which opera))` || exit 0; set OLD_OPERA=`cat /tmp/opera.timestamp` || exit 0; if [ $NEW_OPERA -ne $OLD_OPERA ]; then /root/.scripts/fix-opera.sh; fi; rm -f /tmp/opera.timestamp";};