parent
0cfe9802d0
commit
bf27a177da
@ -0,0 +1,46 @@ |
||||
cdist-type__timezone(7) |
||||
======================= |
||||
Ramon Salvadó - rsalvado at gnuine dot com |
||||
|
||||
|
||||
NAME |
||||
---- |
||||
cdist-type__timezone - Allows to configure the desired localtime timezone. |
||||
|
||||
|
||||
DESCRIPTION |
||||
----------- |
||||
This type creates a symlink (/etc/localtime) to the selected timezone (which should be available in /usr/share/zoneinfo). |
||||
|
||||
|
||||
REQUIRED PARAMETERS |
||||
------------------- |
||||
None. |
||||
|
||||
|
||||
OPTIONAL PARAMETERS |
||||
------------------- |
||||
None. |
||||
|
||||
|
||||
EXAMPLES |
||||
-------- |
||||
|
||||
-------------------------------------------------------------------------------- |
||||
#Set up Europe/Andorra as our timezone. |
||||
__timezone Europe/Andorra |
||||
|
||||
#Set up US/Central as our timezone. |
||||
__timezone US/Central |
||||
-------------------------------------------------------------------------------- |
||||
|
||||
|
||||
SEE ALSO |
||||
-------- |
||||
- cdist-type(7) |
||||
|
||||
|
||||
COPYING |
||||
------- |
||||
Free use of this software is |
||||
granted under the terms of the GNU General Public License version 3 (GPLv3). |
@ -0,0 +1,26 @@ |
||||
#!/bin/sh |
||||
# |
||||
# 2011 Ramon Salvadó (rsalvado at gnuine dot com) |
||||
# |
||||
# 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/>. |
||||
# |
||||
# |
||||
# This type allows to configure the desired localtime timezone. |
||||
|
||||
timezone="$__object_id" |
||||
|
||||
__package tzdata --state installed |
||||
__link /etc/localtime --source /usr/share/zoneinfo/${timezone} --type symbolic |
Loading…
Reference in new issue