mirror of
https://github.com/juanfont/headscale.git
synced 2025-11-11 14:30:06 -05:00
cmd: add option to get and set policy directly from database (#2765)
This commit is contained in:
24
hscontrol/util/prompt.go
Normal file
24
hscontrol/util/prompt.go
Normal file
@@ -0,0 +1,24 @@
|
||||
package util
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"os"
|
||||
"strings"
|
||||
)
|
||||
|
||||
// YesNo takes a question and prompts the user to answer the
|
||||
// question with a yes or no. It appends a [y/n] to the message.
|
||||
// The question is written to stderr so that content can be redirected
|
||||
// without interfering with the prompt.
|
||||
func YesNo(msg string) bool {
|
||||
fmt.Fprint(os.Stderr, msg+" [y/n] ")
|
||||
|
||||
var resp string
|
||||
fmt.Scanln(&resp)
|
||||
resp = strings.ToLower(resp)
|
||||
switch resp {
|
||||
case "y", "yes", "sure":
|
||||
return true
|
||||
}
|
||||
return false
|
||||
}
|
||||
Reference in New Issue
Block a user