Skip to content
Open
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
3 changes: 2 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -126,5 +126,6 @@ for( label in build_nodes) {
stage_unit_test(label)
stage_rpmbuild(label)
stage_acceptance(label)
stage_acceptance_esxi(label)
// Esxi is currently unmaintained and needs to be removed from the code.
//stage_acceptance_esxi(label)
}
3 changes: 3 additions & 0 deletions hypervisor/lxc/lxc.go
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,9 @@ func (d *LXCHypervisorDriver) modifyConf() error {
}
defer lxcconf.Close()

// Log boot process to a file for debugging purposes
fmt.Fprintf(lxcconf, "\nlxc.console.logfile = %s\n", filepath.Join(d.containerDir(), "console.log"))

// Append comment header
fmt.Fprintf(lxcconf, "\n# OpenVDC Network Configuration\n")

Expand Down