Uninstall a plugin

Uninstall a pluginΒΆ

Fuel does not support upgrades for plugins. The old plugin versions may not be compatible with the new version of Fuel. Therefore, you must uninstall the Fuel plugins before upgrading Fuel.

To uninstall a plugin:

  1. Log in to the Fuel Master node CLI.

  2. Create an uninstall.sh script with the following content:

    #!/bin/bash
    set -eux
    echo uninstall > /tmp/myplugin_uninstall
    

    where myplugin is the name of your plugin.

  3. Put the uninstall.sh script in your plugin folder.

  4. Type:

    fuel plugins --remove myplugin
    

See also