Puppet Class: linux_secured::internal::gdm_config

Defined in:
manifests/internal/gdm_config.pp

Overview

TODO: Document



2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'manifests/internal/gdm_config.pp', line 2

class linux_secured::internal::gdm_config () {
  file { ['/etc/dconf/db/gdm.d', '/etc/dconf/profile']:
    ensure => 'directory',
  }

  file { '/etc/dconf/profile/gdm':
    ensure  => 'file',
    # lint:ignore:strict_indent
    content => @(CONTENT),
    user-db:user
    system-db:gdm
    file-db:/usr/share/gdm/greeter-dconf-defaults
    | CONTENT
    # lint:endignore:strict_indent
    owner   => 'root',
    group   => 'root',
    mode    => '0644',
  }
}