summaryrefslogtreecommitdiffstats
path: root/tozt/tozt/manifests/misc.pp
diff options
context:
space:
mode:
Diffstat (limited to 'tozt/tozt/manifests/misc.pp')
-rw-r--r--tozt/tozt/manifests/misc.pp20
1 files changed, 0 insertions, 20 deletions
diff --git a/tozt/tozt/manifests/misc.pp b/tozt/tozt/manifests/misc.pp
deleted file mode 100644
index a68bdd1..0000000
--- a/tozt/tozt/manifests/misc.pp
+++ /dev/null
@@ -1,20 +0,0 @@
-class tozt::misc {
- file {
- "/etc/locale.gen":
- content => "en_US.UTF-8 UTF-8\n",
- notify => Exec["regen locale data"];
- "/etc/locale.conf":
- content => "LANG=en_US.UTF-8\n",
- require => [
- File["/etc/locale.gen"],
- Exec["regen locale data"],
- ];
- "/etc/hosts":
- source => "puppet:///modules/tozt/hosts";
- }
-
- exec { "regen locale data":
- command => "/usr/bin/locale-gen",
- refreshonly => true;
- }
-}