source: systemd-units/blfs/units/nfsd.service@ 7178f6d

krejzi/svn
Last change on this file since 7178f6d was 7178f6d, checked in by Krejzi <krejzi@…>, 10 years ago

Rebrand. Import systemd-units from systemd branch. Reset changelog.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/branches/systemd-ng@14734 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 477 bytes
Line 
1[Unit]
2Description=NFS Server Daemon
3Documentation=man:rpc.nfsd(8)
4After=rpcbind.service
5Requires=rpcbind.service
6Before=nfs-server.target
7PartOf=nfs-server.target
8
9[Service]
10Type=oneshot
11EnvironmentFile=/etc/default/nfs-utils
12ExecStart=/usr/sbin/rpc.nfsd $NFSD_OPTS $NFSD_COUNT
13ExecStartPost=/usr/sbin/exportfs -a
14ExecReload=/usr/sbin/exportfs -a -r
15ExecStop=/usr/sbin/rpc.nfsd 0
16ExecStopPost=/usr/sbin/exportfs -a -u
17RemainAfterExit=yes
18
19[Install]
20WantedBy=multi-user.target
Note: See TracBrowser for help on using the repository browser.