Puppet Class: spaarti

Defined in:
manifests/init.pp

Overview

Class: spaarti

Full description of class spaarti here.

Parameters

sample_parameter

Explanation of what this parameter affects and what it defaults to.

Parameters:

  • codedir (Any) (defaults to: "/Users/${::user}/src")


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
# File 'manifests/init.pp', line 10

class spaarti (
  $codedir = "/Users/${::user}/src"
) {
  ruby_gem { 'spaarti':
    gem          => 'spaarti',
    ruby_version => '*'
  } ->
  file { "/Users/${::user}/.octoauth.d/spaarti.yml":
    content => template('spaarti/octoauth.yml'),
    mode    => '0600',
    require => Class['::dotfiles']
  } ->
  exec { 'spaarti':
    command  => "sudo -u ${::user} spaarti",
    user     => 'root',
    timeout  => 0,
    schedule => 'daily',
    require  => Class['::ssh']
  } ->
  exec { "/Users/${::user}/.bin/repo_sync":
    cwd      => $codedir,
    timeout  => 0,
    schedule => 'daily'
  }
}