fix nfs related service names
authorRafael David Tinoco <rafaeldtinoco@gmail.com>
Mon, 8 Jul 2024 13:40:49 +0000 (16:40 +0300)
committerMichael Tokarev <mjt@tls.msk.ru>
Mon, 8 Jul 2024 13:40:49 +0000 (16:40 +0300)
Upstream defines nfs related service names based on the Linux
distribution. This patch fixes the names for Debian and derivatives.

Update by Andreas Hasenack <andreas@canonical.com> (LP: #1961840):
Use nfsconf(8) if it's available, instead of parsing the old config
files in /etc/default/nfs-*

Bug-Debian: https://bugs.debian.org/929931
Bug-Ubuntu: https://bugs.launchpad.net/bugs/722201
Last-Update: 2022-09-09

Gbp-Pq: Name fix-nfs-service-name-to-nfs-kernel-server.patch

ctdb/config/events/legacy/06.nfs.script
ctdb/config/events/legacy/60.nfs.script
ctdb/config/nfs-linux-kernel-callout
ctdb/config/statd-callout

index b937d4332549585693736ef25c1911d54a069c6f..943b5005bd970e4bf01a87f19c3e9f20f62306b2 100755 (executable)
@@ -6,7 +6,7 @@
 
 . "${CTDB_BASE}/functions"
 
-service_name="nfs"
+service_name="nfs-kernel-server"
 
 load_script_options "service" "60.nfs"
 
index b7ae0746be56ccd22455be37fa1884ea02019818..b47f86fcd7e94108734698c57070f10afda05e41 100755 (executable)
@@ -6,9 +6,11 @@
 
 . "${CTDB_BASE}/functions"
 
-service_name="nfs"
+service_name="nfs-kernel-server"
 
-load_system_config "nfs"
+if ! type nfsconf > /dev/null 2>&1; then
+    load_system_config "nfs-kernel-server"
+fi
 
 load_script_options
 
index f2f3e3824d00ed105ad9f19d10881103c4051b4f..4e3b1e21c04c2c810a48ec61443e1adf1377093c 100755 (executable)
@@ -14,7 +14,7 @@ nfs_exports_file="${CTDB_NFS_EXPORTS_FILE:-/var/lib/nfs/etab}"
 
 # As above, edit the default value below.  CTDB_NFS_DISTRO_STYLE is a
 # test variable only.
-nfs_distro_style="${CTDB_NFS_DISTRO_STYLE:-systemd-redhat}"
+nfs_distro_style="${CTDB_NFS_DISTRO_STYLE:-systemd-debian}"
 
 # As above, edit the default value below.  CTDB_SYS_ETCDIR is a
 # test variable only.
@@ -42,7 +42,22 @@ systemd-*)
                : # Defaults only
                ;;
        *-debian)
-               nfs_rquotad_service="quotarpc"
+               # XXX
+               # Undefine nfs_rquotad_services because the quotarpc service won't
+               # start unless there are specific "quota" mount options in /etc/fstab.
+               # In this way, we let ctdb start it up manually once the
+               # /etc/ctdb/nfs-checks.d/50.rquotad.check detects rpc.rquotad isn't
+               # running.
+               # Users who really don't want rpc.rquotad running should then move
+               # the 50.rquotad.check script away.
+               nfs_rquotad_service=""
+               nfs_service="nfs-kernel-server"
+               if type nfsconf >/dev/null 2>&1; then
+                       nfs_config=""
+               else
+                       nfs_config="/etc/default/nfs-kernel-server"
+               fi
+               nfs_rquotad_config="/etc/default/quota"
                ;;
        *)
                echo "Internal error"
index 38c155e4793068226488ba07ac8e526c88db3d71..c138e71c7b103e4d9a0f92c01157a323166450e7 100755 (executable)
@@ -29,7 +29,9 @@ die ()
 }
 
 # Try different variables to find config file for NFS_HOSTNAME
-load_system_config "nfs" "nfs-common"
+if ! type nfsconf > /dev/null 2>&1; then
+    load_system_config "nfs-common" "nfs-kernel-server"
+fi
 
 # If NFS_HOSTNAME not set then try to pull it out of /etc/nfs.conf
 if [ -z "$NFS_HOSTNAME" ]; then