aboutsummaryrefslogtreecommitdiff
path: root/manifests/subsystem/fontconfig.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/subsystem/fontconfig.pp')
-rw-r--r--manifests/subsystem/fontconfig.pp11
1 files changed, 11 insertions, 0 deletions
diff --git a/manifests/subsystem/fontconfig.pp b/manifests/subsystem/fontconfig.pp
new file mode 100644
index 0000000..8704387
--- /dev/null
+++ b/manifests/subsystem/fontconfig.pp
@@ -0,0 +1,11 @@
+class nodo::subsystem::fontconfig {
+ package { 'fontconfig':
+ ensure => present,
+ }
+
+ exec { 'fontconfig-reconfigure':
+ command => 'dpkg-reconfigure fontconfig',
+ refreshonly => true,
+ user => 'root',
+ }
+}