aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Rabson <dfr@FreeBSD.org>2023-06-06 07:42:07 +0000
committerDoug Rabson <dfr@FreeBSD.org>2023-06-12 10:08:56 +0000
commitc85ba9733b0dd5ec45bc9816b3ff065ab1f3218f (patch)
treed1ac9bf888161f25075605ea577a81f0d19d80a7
parent3a1f4353996a4c3aeeb34e3b9f0af1d8c31838b3 (diff)
sysutils/conmon: Fix podman's restart-policy handling
Approved-by: dch Differential Revision: https://reviews.freebsd.org/D40437
-rw-r--r--sysutils/conmon/Makefile2
-rw-r--r--sysutils/conmon/files/patch-src_close__fds.c33
-rw-r--r--sysutils/conmon/pkg-message17
3 files changed, 51 insertions, 1 deletions
diff --git a/sysutils/conmon/Makefile b/sysutils/conmon/Makefile
index 251c26caa78b..5114574ede56 100644
--- a/sysutils/conmon/Makefile
+++ b/sysutils/conmon/Makefile
@@ -1,7 +1,7 @@
PORTNAME= conmon
DISTVERSIONPREFIX= v
DISTVERSION= 2.1.7
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= sysutils
MAINTAINER= dfr@FreeBSD.org
diff --git a/sysutils/conmon/files/patch-src_close__fds.c b/sysutils/conmon/files/patch-src_close__fds.c
new file mode 100644
index 000000000000..70c296705df3
--- /dev/null
+++ b/sysutils/conmon/files/patch-src_close__fds.c
@@ -0,0 +1,33 @@
+--- src/close_fds.c.orig 2023-02-28 02:39:11 UTC
++++ src/close_fds.c
+@@ -22,6 +22,12 @@
+
+ #include <sys/stat.h>
+
++#ifdef __FreeBSD__
++#define OPEN_FILES_DIR "/dev/fd"
++#else
++#define OPEN_FILES_DIR "/proc/self/fd"
++#endif
++
+ static int open_files_max_fd;
+ static fd_set *open_files_set;
+
+@@ -31,7 +37,7 @@ static void __attribute__((constructor)) init()
+ ssize_t size = 0;
+ DIR *d;
+
+- d = opendir("/proc/self/fd");
++ d = opendir(OPEN_FILES_DIR);
+ if (!d)
+ return;
+
+@@ -85,7 +91,7 @@ void close_all_fds_ge_than(int firstfd)
+ struct dirent *ent;
+ DIR *d;
+
+- d = opendir("/proc/self/fd");
++ d = opendir(OPEN_FILES_DIR);
+ if (!d)
+ return;
+
diff --git a/sysutils/conmon/pkg-message b/sysutils/conmon/pkg-message
new file mode 100644
index 000000000000..f3784b3d66c6
--- /dev/null
+++ b/sysutils/conmon/pkg-message
@@ -0,0 +1,17 @@
+[
+{ type: install
+ message: <<EOM
+
+To properly support podman's container restart policy, conmon needs fdescfs(5)
+to be mounted on /dev/fd.
+
+If /dev/fd is not already mounted:
+
+ mount -t fdescfs fdesc /dev/fd
+
+To make it permanent, add the following line to /etc/fstab:
+
+ fdesc /dev/fd fdescfs rw 0 0
+EOM
+}
+]