Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/flimberger/gojail
A Go implementation for the jail(2) API of FreeBSD
https://github.com/flimberger/gojail
Last synced: 28 days ago
JSON representation
A Go implementation for the jail(2) API of FreeBSD
- Host: GitHub
- URL: https://github.com/flimberger/gojail
- Owner: flimberger
- License: other
- Created: 2020-05-29T15:06:45.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-03-09T15:12:36.000Z (almost 2 years ago)
- Last Synced: 2024-06-19T13:46:43.072Z (7 months ago)
- Language: Go
- Size: 38.1 KB
- Stars: 5
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# gojail
Implementation of the FreeBSD
[`jail(2)`](https://www.freebsd.org/cgi/man.cgi?query=jail&sektion=2&manpath=FreeBSD+12.2-RELEASE+and+Ports)
and [`jailparam(3)`](https://www.freebsd.org/cgi/man.cgi?query=jailparam&sektion=3&manpath=FreeBSD+12.2-RELEASE+and+Ports)
APIs for Go.## Packages
The `gojail` package provides high-level access to the `jail(2)` API,
while `gojail/syscall` implements the low-level system call interface.
The latter should be treated as an implementation detail and not be used by regular consumers of the API.