aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/java/org/pacien/tincapp/commands/Tinc.kt
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/java/org/pacien/tincapp/commands/Tinc.kt')
-rw-r--r--app/src/main/java/org/pacien/tincapp/commands/Tinc.kt11
1 files changed, 0 insertions, 11 deletions
diff --git a/app/src/main/java/org/pacien/tincapp/commands/Tinc.kt b/app/src/main/java/org/pacien/tincapp/commands/Tinc.kt
index e8ebb21..9b57233 100644
--- a/app/src/main/java/org/pacien/tincapp/commands/Tinc.kt
+++ b/app/src/main/java/org/pacien/tincapp/commands/Tinc.kt
@@ -13,17 +13,6 @@ object Tinc {
13 .withOption("config", AppPaths.confDir(netName).absolutePath) 13 .withOption("config", AppPaths.confDir(netName).absolutePath)
14 .withOption("pidfile", AppPaths.pidFile(netName).absolutePath) 14 .withOption("pidfile", AppPaths.pidFile(netName).absolutePath)
15 15
16 // independently runnable commands
17
18 @Throws(IOException::class)
19 fun fsck(netName: String, fix: Boolean): List<String> {
20 var cmd = newCommand(netName).withArguments("fsck")
21 if (fix) cmd = cmd.withOption("force")
22 return Executor.call(cmd)
23 }
24
25 // commands requiring a running tinc daemon
26
27 @Throws(IOException::class) 16 @Throws(IOException::class)
28 fun stop(netName: String) { 17 fun stop(netName: String) {
29 Executor.call(newCommand(netName).withArguments("stop")) 18 Executor.call(newCommand(netName).withArguments("stop"))