diff --git a/peach-lib/src/sbot.rs b/peach-lib/src/sbot.rs index b784017..d08e6db 100644 --- a/peach-lib/src/sbot.rs +++ b/peach-lib/src/sbot.rs @@ -138,6 +138,8 @@ pub struct SbotConfig { pub promisc: bool, /// Disable the UNIX socket RPC interface. pub nounixsock: bool, + /// Attempt to repair the filesystem before starting. + pub repair: bool, } /// Default configuration values for go-sbot. @@ -157,6 +159,7 @@ impl Default for SbotConfig { enable_ebt: false, promisc: false, nounixsock: false, + repair: false, } } }