diff options
author | J. Bruce Fields <bfields@redhat.com> | 2014-09-24 11:26:12 -0400 |
---|---|---|
committer | Steve Dickson <steved@redhat.com> | 2014-09-24 11:26:12 -0400 |
commit | 2d9ea45bdbaf8bd78ce34b99480df548d367082d (patch) | |
tree | dbfcfdd3b57bfca1163894a08b7ae2d1ba3a5492 /systemd/auth-rpcgss-module.service | |
parent | cfbbb7ac24f400d5a37c5fc9fd784bb81e99ed05 (diff) | |
download | nfs-utils-2d9ea45bdbaf8bd78ce34b99480df548d367082d.tar.gz nfs-utils-2d9ea45bdbaf8bd78ce34b99480df548d367082d.tar.xz nfs-utils-2d9ea45bdbaf8bd78ce34b99480df548d367082d.zip |
systemd: manually insert auth_rpcgss module.
We need to insert the auth_rpcgss module before starting rpc.svcgssd or
gss-proxy, for two reasons:
- gss-proxy needs access to the /proc/net/rpc/use-gss-proxy file
to set up communication with knfsd.
- the unit files need to able to test for the existance of the
same path in order to decide whether the kernel supports
gss-proxy or not.
Currently we're using dependencies on proc-fs-nfsd.mount for this, but
that works only because of the nfsd kernel module references some
symbols in auth_rpcgss, which is an odd implementation detail we're
likely to fix some day.
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Signed-off-by: Steve Dickson <steved@redhat.com>
Diffstat (limited to 'systemd/auth-rpcgss-module.service')
-rw-r--r-- | systemd/auth-rpcgss-module.service | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/systemd/auth-rpcgss-module.service b/systemd/auth-rpcgss-module.service new file mode 100644 index 0000000..3fc2f4a --- /dev/null +++ b/systemd/auth-rpcgss-module.service @@ -0,0 +1,14 @@ +# We want to start gss-proxy on kernels that support it and rpc.svcgssd +# on those that don't. Those services check for support by checking +# for existence of the path /proc/net/rpc/use-gss-proxy. Before they +# can perform that check, they need this module loaded. (Unless +# rpcsec_gss support is built directly into the kernel, in which case this +# unit will fail. But that's OK.) +[Unit] +Description=Kernel Module supporting RPCSEC_GSS +Before=gssproxy.service rpc-svcgssd.service +ConditionPathExists=/etc/krb5.keytab + +[Service] +Type=oneshot +ExecStart=/sbin/modprobe -q auth_rpcgss |