add a hint about unsupported os

Signed-off-by: Nico Schottelius <nico@bento.schottelius.org>
This commit is contained in:
Nico Schottelius 2014-02-12 16:42:02 +01:00
parent e3464bef1b
commit 23f85118f5
2 changed files with 8 additions and 3 deletions

View File

@ -16,7 +16,7 @@ This cdist type allows you to setup locales.
OPTIONAL PARAMETERS
-------------------
state::
'present' or 'absent'
'present' or 'absent', defaults to present
EXAMPLES
@ -43,5 +43,5 @@ SEE ALSO
COPYING
-------
Copyright \(C) 2013 Nico Schottelius. Free use of this software is
Copyright \(C) 2013-2014 Nico Schottelius. Free use of this software is
granted under the terms of the GNU General Public License version 3 (GPLv3).

View File

@ -1,6 +1,6 @@
#!/bin/sh
#
# 2013 Nico Schottelius (nico-cdist at schottelius.org)
# 2013-2014 Nico Schottelius (nico-cdist at schottelius.org)
#
# This file is part of cdist.
#
@ -29,4 +29,9 @@ case "$os" in
# Debian needs a seperate package
__package locales --state present
;;
*)
echo "Sorry, do not know how to handle os: $os" >&2
echo "Please edit the type ${__type##*/} to fix this." >&2
exit 1
;;
esac