Welcome, Guest. Please login or register.
Did you miss your activation email?

Author Topic: [EN] how to deinstall/purge flashplayer?  (Read 1698 times)

Offline michaa7

  • User
  • Posts: 2.298
[EN] how to deinstall/purge flashplayer?
« on: 2014/03/07, 18:43:20 »
I assume apt-get purge flashplugin-nonfree will not neccessarily deinstall the plugin, does it? Or am I wrong?
Ok, you can't code, but you still might be able to write a bug report for Debian's sake

Offline michaa7

  • User
  • Posts: 2.298
Re: how to deinstall/purge flashplayer?
« Reply #1 on: 2014/03/07, 18:57:38 »
update-flashplugin-nonfree --uninstall
Ok, you can't code, but you still might be able to write a bug report for Debian's sake

Offline michaaa62

  • User
  • Posts: 299
Re: how to deinstall/purge flashplayer?
« Reply #2 on: 2014/03/07, 19:35:28 »
I assume apt-get purge flashplugin-nonfree will not neccessarily deinstall the plugin, does it? Or am I wrong?
Why wouldn't it?
Code: [Select]
$ cat /var/lib/dpkg/info/flashplugin-nonfree.prerm
#!/bin/sh


set -e


case "$1" in
    remove|upgrade|deconfigure)
        update-flashplugin-nonfree --uninstall || true
    ;;


    failed-upgrade)
    ;;


    *)
        echo "prerm called with unknown argument \`$1'" >&2
        exit 1
    ;;
esac






exit 0
and
Code: [Select]
$ cat /var/lib/dpkg/info/flashplugin-nonfree.postrm
#!/bin/sh


set -e


#echo "flashplugin-nonfree postrm: $@"


if [ "$1" = "purge" ]
then
        rm -rf /var/cache/flashplugin-nonfree/*
fi






exit 0
Trust in apt-get!  8)