libpod: Don't mount /dev/shm in containers on FreeBSD

This mount has never been standard on FreeBSD, preferring to use /tmp or
/var/tmp optionally with tmpfs to ensure data is lost on a reboot.

[NO NEW TESTS NEEDED]

Signed-off-by: Doug Rabson <dfr@rabson.org>
This commit is contained in:
Doug Rabson
2022-08-27 15:53:45 +01:00
parent 212b11c34c
commit d162285f34
3 changed files with 21 additions and 6 deletions

View File

@ -0,0 +1,5 @@
package libpod
const (
useDevShm = false
)