mirror of
https://git.mirrors.martin98.com/https://github.com/ceph/ceph-csi.git
synced 2025-08-04 22:10:38 +08:00

This commit adds the Azure SDK for Azure key vault KMS integration to the Ceph CSI driver. Signed-off-by: Praveen M <m.praveen@ibm.com>
15 lines
287 B
Go
15 lines
287 B
Go
package browser
|
|
|
|
import (
|
|
"errors"
|
|
"os/exec"
|
|
)
|
|
|
|
func openBrowser(url string) error {
|
|
err := runCmd("xdg-open", url)
|
|
if e, ok := err.(*exec.Error); ok && e.Err == exec.ErrNotFound {
|
|
return errors.New("xdg-open: command not found - install xdg-utils from ports(8)")
|
|
}
|
|
return err
|
|
}
|