summaryrefslogtreecommitdiff
path: root/cmd/tunneld/main.go
diff options
context:
space:
mode:
authorMikhail Osipov <mike.osipov@gmail.com>2020-05-25 15:32:16 +0300
committerMikhail Osipov <mike.osipov@gmail.com>2020-05-25 15:32:16 +0300
commit97802849e3a21952e6c5896622d52153b2d96ee7 (patch)
tree58597b53ae9db80bf5424c067403e33fc61685a9 /cmd/tunneld/main.go
parent1c4c61c90272fe251245da5f30b6134ba5a410f1 (diff)
fix daemon deconfigure
Diffstat (limited to 'cmd/tunneld/main.go')
-rw-r--r--cmd/tunneld/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/tunneld/main.go b/cmd/tunneld/main.go
index e56dd12..a0c0e03 100644
--- a/cmd/tunneld/main.go
+++ b/cmd/tunneld/main.go
@@ -227,7 +227,7 @@ func configure(s *server.Server) error {
}
func deconfigure(s *server.Server) error {
- return runCommand(s, "cmd.down")
+ return runCommand(s, "cmd.fini")
}
func main() {