Skip to content

Commit

Permalink
Update Debian changelog and build requirements
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Blichmann <mail@blichmann.eu>
  • Loading branch information
cblichmann committed Oct 18, 2018
1 parent d6a2890 commit 0afbbcc
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
9 changes: 9 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
jailtime (0.6-1) unstable; urgency=medium

* Update to newer Golang version (1.9)
* More robust file copy
* Support file permissions in jail specs
* Update documentation with example for nsjail

-- Christian Blichmann (Secure Email 2018/2019) <mail@blichmann.eu> Thu, 18 Oct 2018 19:16:04 +0200

jailtime (0.5-1) unstable; urgency=medium

* Small packaging and CI fixes
Expand Down
2 changes: 1 addition & 1 deletion debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Source: jailtime
Maintainer: Christian Blichmann <jailtime@blichmann.eu>
Section: admin
Priority: optional
Build-Depends: cdbs,golang,make
Build-Depends: cdbs,golang-go,make
Standards-Version: 3.9.6
Homepage: https://github.com/cblichmann/jailtime

Expand Down
7 changes: 3 additions & 4 deletions loader/loader_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,9 @@ func ImportedLibraries(filename string) (deps []string, err error) {
}
defer g.Close()
if g.Class == e.Class && g.Machine == e.Machine {
return true
//newLibs, err := g.ImportedLibraries()
//libs = append(libs, newLibs...)
//return err == nil
newLibs, err := g.ImportedLibraries()
libs = append(libs, newLibs...)
return err == nil
}
return false
})
Expand Down

0 comments on commit 0afbbcc

Please sign in to comment.