public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Kaleb S. KEITHLEY <kkeithle@redhat.com>
To: git-commits@fedoraproject.org
Subject: [rpms/nfs-ganesha] rawhide: NFS-Ganesha 11.0 GA
Date: Tue, 30 Jun 2026 12:05:12 GMT [thread overview]
Message-ID: <178282111218.1.14481542316125089147.rpms-nfs-ganesha-38a0c6a61d06@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/nfs-ganesha
Branch : rawhide
Commit : 38a0c6a61d06463f9ff37f3666d41084b2b48f5e
Author : Kaleb S. KEITHLEY <kkeithle@redhat.com>
Date : 2026-06-30T08:04:29-04:00
Stats : +6/-81 in 3 file(s)
URL : https://src.fedoraproject.org/rpms/nfs-ganesha/c/38a0c6a61d06463f9ff37f3666d41084b2b48f5e?branch=rawhide
Log:
NFS-Ganesha 11.0 GA
- integrated rpc.statd feature
---
diff --git a/0003-src-selinux-ganesha.te.patch b/0003-src-selinux-ganesha.te.patch
deleted file mode 100644
index bc95c51..0000000
--- a/0003-src-selinux-ganesha.te.patch
+++ /dev/null
@@ -1,77 +0,0 @@
---- nfs-ganesha-9.16/src/selinux/ganesha.te.orig 2026-06-25 07:54:15.594771685 -0400
-+++ nfs-ganesha-9.16/src/selinux/ganesha.te 2026-06-25 10:21:50.301809751 -0400
-@@ -1,10 +1,10 @@
- policy_module(ganesha, 1.0.0)
-
- require {
-- type var_lib_nfs_t;
- type apm_bios_t;
- type autofs_device_t;
- type bpf_t;
-+ type cache_home_t;
- type clock_device_t;
- type configfs_t;
- type cpu_device_t;
-@@ -17,6 +17,7 @@
- type fixed_disk_device_t;
- type framebuf_device_t;
- type fs_t;
-+ type home_root_t;
- type hugetlbfs_t;
- type initctl_t;
- type kmsg_device_t;
-@@ -32,18 +33,22 @@
- type pstore_t;
- type ptmx_t;
- type removable_device_t;
-+ type rpcbind_t;
- type rpc_pipefs_t;
- type scsi_generic_device_t;
- type sound_device_t;
-+ type ssh_home_t;
- type sysfs_t;
- type tmpfs_t;
- type usb_device_t;
- type usbmon_device_t;
-+ type user_home_dir_t;
-+ type user_home_t;
-+ type var_lib_nfs_t;
- type virtio_device_t;
- type watchdog_device_t;
- type wireless_device_t;
- type xserver_misc_device_t;
-- type rpcbind_t;
-
- type cgroup_t;
- type usr_t;
-@@ -95,6 +100,7 @@
- allow ganesha_t self:capability { dac_read_search dac_override fowner setgid setuid };
- allow ganesha_t self:capability2 block_suspend;
- allow ganesha_t self:capability sys_resource;
-+allow ganesha_t self:capability sys_rawio;
- allow ganesha_t self:process { setcap setrlimit };
- allow ganesha_t self:fifo_file rw_fifo_file_perms;
- allow ganesha_t self:unix_stream_socket create_stream_socket_perms;
-@@ -204,11 +210,21 @@
- fs_read_cgroup_files(ganesha_t)
-
- #!!!! This avc can be allowed using the boolean 'domain_can_mmap_files'
--allow ganesha_t usr_t:file map;
-+allow ganesha_t usr_t:dir { add_name remove_name };
-+allow ganesha_t usr_t:file { map create unlink write };
-+allow ganesha_t var_lib_nfs_t:file create;
-
- #============= init_t ==============
- allow init_t var_lib_nfs_t:dir { create setattr };
-+allow init_t var_lib_nfs_t:file { create unlink write };
-
-+#============= home_dir ==============
-+allow ganesha_t cache_home_t:dir getattr;
-+allow ganesha_t home_root_t:dir read;
-+allow ganesha_t ssh_home_t:dir getattr;
-+allow ganesha_t user_home_dir_t:dir { add_name getattr open read remove_name search };
-+allow ganesha_t user_home_dir_t:file { create getattr open read unlink write };
-+allow ganesha_t user_home_t:dir getattr;
-
- ########################################
- #
diff --git a/nfs-ganesha.spec b/nfs-ganesha.spec
index 4fddd6c..a14a542 100644
--- a/nfs-ganesha.spec
+++ b/nfs-ganesha.spec
@@ -151,8 +151,8 @@ Requires: openSUSE-release
%global kmip_ver_short 4f553ecaf
Name: nfs-ganesha
-Version: 10.0
-Release: 3%{?dev:%{dev}}%{?dist}
+Version: 11.0
+Release: 1%{?dev:%{dev}}%{?dist}
Summary: NFS-Ganesha is a NFS Server running in user space
License: LGPL-3.0-or-later
Url: https://github.com/nfs-ganesha/nfs-ganesha/wiki
@@ -161,7 +161,6 @@ Source0: https://github.com/%{name}/%{name}/archive/V%{version}%{?dev:-%{dev}}/%
Source1: https://github.com/ceph/libkmip/archive/%{kmip_ver_long}/libkmip-%{kmip_ver_short}.tar.gz
Patch: 0001-config_samples-log_rotate.patch
Patch: 0002-src-scripts-python.patch
-Patch: 0003-src-selinux-ganesha.te.patch
BuildRequires: cmake
BuildRequires: make
@@ -1007,6 +1006,9 @@ killall -SIGHUP dbus-daemon >/dev/null 2>&1 || :
%endif
%changelog
+* Mon Jun 29 2026 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 11.0-1
+- NFS-Ganesha 11.0 GA
+
* Thu Jun 25 2026 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 10.0-3
- NFS-Ganesha 10.0, additional selinux, including home_dir_t
diff --git a/sources b/sources
index 11f9df6..a22e553 100644
--- a/sources
+++ b/sources
@@ -1,2 +1,2 @@
-SHA512 (nfs-ganesha-10.0.tar.gz) = 5026523d8b921e7b5d4e1e8cc6903107196f3b8a594200ef72994aeaddbbeeb20d80c42f9148ee53c541a83e09385396158225fcba1d4bcf83fe27ac6f7ca4c8
+SHA512 (nfs-ganesha-11.0.tar.gz) = 554b82abe84860e4c970f883267192c1a792ac5f5b227f5d0044b7d30718d959da1ec8fa101079b288f7d91989c17d2c02a96183cc25cb3afae894aca7b73202
SHA512 (libkmip-4f553ecaf.tar.gz) = 4aca809758773d919b9657f96a1384076ac34c5a88576d3e7ec4719a0cb1a3638b150f8506fda9476815fe7757cbbb6ea6e0daa943da86c2eaa3bf1a3f1d16f1
reply other threads:[~2026-06-30 12:05 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=178282111218.1.14481542316125089147.rpms-nfs-ganesha-38a0c6a61d06@fedoraproject.org \
--to=kkeithle@redhat.com \
--cc=git-commits@fedoraproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox