15 lines
252 B
Text
15 lines
252 B
Text
|
#
|
||
|
# This script rebuilds the vlc plugins cache.
|
||
|
#
|
||
|
|
||
|
_vlccachegen=usr/lib/vlc/vlc-cache-gen
|
||
|
|
||
|
case "${ACTION}" in
|
||
|
post)
|
||
|
if [ -x "${_vlccachegen}" ]; then
|
||
|
echo "Rebuilding VLC plugins cache file..."
|
||
|
${_vlccachegen} -f usr/lib/vlc/plugins
|
||
|
fi
|
||
|
;;
|
||
|
esac
|