mirror of https://github.com/portainer/portainer
24 lines
434 B
Go
24 lines
434 B
Go
package cli
|
|
|
|
import (
|
|
"bufio"
|
|
"fmt"
|
|
"os"
|
|
"strings"
|
|
)
|
|
|
|
// Confirm starts a rollback db cli application
|
|
func Confirm(message string) (bool, error) {
|
|
fmt.Printf("%s [y/N] ", message)
|
|
|
|
reader := bufio.NewReader(os.Stdin)
|
|
|
|
answer, err := reader.ReadString('\n')
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
answer = strings.ReplaceAll(answer, "\n", "")
|
|
return strings.EqualFold(answer, "y") || strings.EqualFold(answer, "yes"), nil
|
|
}
|