Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@
build:
go build -o ./build/

clean:
go clean -testcache
test:
go test ./...

integration-test:
go test -tags=integration -v -timeout 60m ./...
go test -tags=integration -v -timeout 60m ./...
5 changes: 0 additions & 5 deletions foreman-builder/cmd/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,6 @@ func (u User) createOrbstackContainer(opts foremanbuilder.OrbOptions) error {
Packages: config.Packages,
}

// check for errors by doing ssh <container-name>@orb cat /var/log/cloud-init-output.log
if err != nil {
foremanbuilder.Logger.Errorf("Failed to get home directory: %v", err)
return err
}
confsDir := filepath.Join(u.dotFilePath, "confs")
if err := os.MkdirAll(confsDir, 0755); err != nil {
foremanbuilder.Logger.Errorf("Failed to create confs directory: %v", err)
Expand Down
Loading