blob: 8704387649513fc61f2c8708e6d9023a4e4a61fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
class nodo::subsystem::fontconfig {
package { 'fontconfig':
ensure => present,
}
exec { 'fontconfig-reconfigure':
command => 'dpkg-reconfigure fontconfig',
refreshonly => true,
user => 'root',
}
}
|