Puppet Class: dotfiles

Defined in:
manifests/init.pp

Overview

Configure dotfiles using …

Parameters:

  • source (String[1]) (defaults to: "${dotfiles::homedir($::id)}/.dotdotdot.conf")
  • repo (String[1]) (defaults to: 'https://github.com/ingydotnet/...')
  • owner (Variant[String[1], Integer]) (defaults to: $facts['id'])
  • group (Variant[String[1], Integer]) (defaults to: $facts['gid'])


2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# File 'manifests/init.pp', line 2

class dotfiles (
  String[1] $source = "${dotfiles::homedir($::id)}/.dotdotdot.conf",
  String[1] $repo = 'https://github.com/ingydotnet/...',
  Variant[String[1], Integer] $owner = $facts['id'],
  Variant[String[1], Integer] $group = $facts['gid']
) {
  $homedir = $facts['homedirs'][$owner]
  $ddd = "${homedir}/..."
  $bin = "${ddd}/..."

  Exec {
    environment => ["HOME=${homedir}"],
    user        => $owner,
    group       => $group
  }

  vcsrepo { $ddd:
    ensure   => present,
    provider => git,
    source   => $repo,
    owner    => $owner,
    group    => $group
  }
  -> exec { 'dotdotdot config':
    command => "${bin} conf ${source}",
    creates => "${ddd}/conf",
  }
  -> exec { 'dotfile upgrade':
    command => "${bin} install",
    onlyif  => "${bin} super_update 2>&1 | grep -e '^From' -e '^Cloning'"
  }
  ~> exec { 'run dotfile post_upgrade':
    command     => "${homedir}/.meta/dotfile_post_upgrade",
    onlyif      => "test -x ${homedir}/.meta/dotfile_post_upgrade",
    refreshonly => true
  }
}