Puppet Class: onepassword::config

Defined in:
manifests/config.pp

Overview

Configure 1Password to play nice and be happy

Parameters:

  • domain (Any) (defaults to: '2BUA8C4S2C.com.agilebits.onepassword4-helper')


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

class onepassword::config (
  $domain = '2BUA8C4S2C.com.agilebits.onepassword4-helper'
) {
  Boxen::Osx_defaults {
      user   => $::boxen_user,
      domain => $domain
  }

  boxen::osx_defaults { 'Enable 1Password watchtower':
    key   => 'watchtowerService',
    value => 1,
    type  => 'integer'
  }

  boxen::osx_defaults { "Don't animate fill for 1Password":
    key   => 'animateFill',
    value => 0,
    type  => 'integer'
  }

  boxen::osx_defaults { 'Use newer OPVault format':
    key   => 'useOPVaultFormatByDefault',
    value => true,
    type  => 'boolean'
  }
}