Expand ~ to HOME in Agent.Socket Add url override for gcloud functions v2 Add logging for parsing the principals go fmt
40 lines
773 B
Go
40 lines
773 B
Go
//go:build mage
|
|
// +build mage
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/magefile/mage/mg"
|
|
|
|
// mage:import ca
|
|
"git.narnian.us/lordwelch/sshrimp/tools/mage/ca"
|
|
// mage:import agent
|
|
"git.narnian.us/lordwelch/sshrimp/tools/mage/agent"
|
|
)
|
|
|
|
var Default = All
|
|
|
|
// Builds all the targets
|
|
func Build() {
|
|
mg.Deps(ca.Build, agent.Build)
|
|
}
|
|
|
|
// Remove all build output (except generated configuration files)
|
|
func Clean() {
|
|
mg.Deps(ca.Clean, agent.Clean)
|
|
}
|
|
|
|
// Build and deploy the ca and agent
|
|
func All() {
|
|
mg.Deps(agent.Build, ca.Package, ca.Generate)
|
|
|
|
if _, err := os.Stat("./terraform"); os.IsNotExist(err) {
|
|
fmt.Println("All done. Run `terraform init` then `terraform apply` to deploy.")
|
|
} else {
|
|
fmt.Println("All done. Run `terraform apply` to deploy.")
|
|
}
|
|
}
|