From 682e8964ce3aea1f355287edd52881adf718c493 Mon Sep 17 00:00:00 2001 From: Mike Kinney Date: Thu, 17 Mar 2022 10:04:26 -0700 Subject: [PATCH] provide a factory reset option for 1.2 --- admin.proto | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/admin.proto b/admin.proto index 979e967..b33d1e2 100644 --- a/admin.proto +++ b/admin.proto @@ -125,5 +125,10 @@ message AdminMessage { * Tell the node to shutdown in this many seconds (or <0 to cancel shutdown) */ int32 shutdown_seconds = 51; + + /* + * Tell the node to do a factory reset and then reboot in this many seconds (or <0 to cancel reboot) + */ + int32 factory_reset_then_reboot_seconds = 52; } } // AdminMessage