3136fbb678
* Change FlagSet error handling to flag.ExitOnError * Ignore os.Args[0] (the command itself) when parsing flags * Revert to using flag.ContinueOnError
22 lines
370 B
Go
22 lines
370 B
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
"os"
|
|
|
|
"github.com/hashicorp/vault/helper/pluginutil"
|
|
"github.com/hashicorp/vault/plugins/database/mysql"
|
|
)
|
|
|
|
func main() {
|
|
apiClientMeta := &pluginutil.APIClientMeta{}
|
|
flags := apiClientMeta.FlagSet()
|
|
flags.Parse(os.Args[1:])
|
|
|
|
err := mysql.RunLegacy(apiClientMeta.GetTLSConfig())
|
|
if err != nil {
|
|
log.Println(err)
|
|
os.Exit(1)
|
|
}
|
|
}
|