new type: __nfs_client

Signed-off-by: Steven Armstrong <steven@icarus.ethz.ch>
This commit is contained in:
Steven Armstrong 2011-11-14 16:11:50 +01:00
parent 71260c7782
commit d88a4ea55f
3 changed files with 71 additions and 0 deletions

View file

@ -0,0 +1,42 @@
cdist-type__nfs_client(7)
=========================
Steven Armstrong <steven-cdist--@--armstrong.cc>
NAME
----
cdist-type__nfs_client - nfs client
DESCRIPTION
-----------
Install, start, do whatever is necessary to have a working nfs client.
REQUIRED PARAMETERS
-------------------
None.
OPTIONAL PARAMETERS
-------------------
None.
EXAMPLES
--------
--------------------------------------------------------------------------------
__nfs_client
--------------------------------------------------------------------------------
SEE ALSO
--------
- cdist-type(7)
COPYING
-------
Copyright \(C) 2011 Steven Armstrong. Free use of this software is
granted under the terms of the GNU General Public License version 3 (GPLv3).

29
conf/type/__nfs_client/manifest Executable file
View file

@ -0,0 +1,29 @@
#!/bin/sh
#
# 2011 Steven Armstrong (steven-cdist at armstrong.cc)
#
# This file is part of cdist.
#
# cdist is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# cdist is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with cdist. If not, see <http://www.gnu.org/licenses/>.
#
__package nfs-common --state installed
require="__package/nfs-common" \
__process portmap --state running --start "/etc/init.d/portmap start"
require="__package/nfs-common" \
__process statd --state running \
--start "/etc/init.d/statd start" \
--name rpc.statd

View file