From 7a24a1a0bca6630942a656707734834d5935849b Mon Sep 17 00:00:00 2001 From: Simone Margaritelli Date: Mon, 7 Oct 2019 16:23:38 +0200 Subject: [PATCH] fix: api plugin is now called grid and opt-out --- pwnagotchi/defaults.yml | 4 ++-- pwnagotchi/plugins/default/{api.py => grid.py} | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) rename pwnagotchi/plugins/default/{api.py => grid.py} (98%) diff --git a/pwnagotchi/defaults.yml b/pwnagotchi/defaults.yml index e9b45b6..3cda0cb 100644 --- a/pwnagotchi/defaults.yml +++ b/pwnagotchi/defaults.yml @@ -6,8 +6,8 @@ main: custom_plugins: # which plugins to load and enable plugins: - api: - enabled: false + grid: + enabled: true report: true # report pwned networks auto-update: enabled: false diff --git a/pwnagotchi/plugins/default/api.py b/pwnagotchi/plugins/default/grid.py similarity index 98% rename from pwnagotchi/plugins/default/api.py rename to pwnagotchi/plugins/default/grid.py index f906b06..09ee08a 100644 --- a/pwnagotchi/plugins/default/api.py +++ b/pwnagotchi/plugins/default/grid.py @@ -1,8 +1,8 @@ __author__ = 'evilsocket@gmail.com' __version__ = '1.0.0' -__name__ = 'api' +__name__ = 'grid' __license__ = 'GPL3' -__description__ = 'This plugin signals the unit cryptographic identity to api.pwnagotchi.ai' +__description__ = 'This plugin signals the unit cryptographic identity and list of pwned networks and list of pwned networks to api.pwnagotchi.ai' import os import logging