Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 690 Bytes

README.md

File metadata and controls

23 lines (19 loc) · 690 Bytes

workstation-hieradata

To use this config:

Mac (bash):

sudo gem install puppet --no-ri --no-doc; \
sudo puppet module install call-workstation; \
curl -L https://github.com/call/workstation-hieradata/archive/master.zip | \
    bsdtar -xvf - -C ~; \
sudo puppet apply -e "class {'workstation': user => $(whoami)}" \
    --hiera_config ~/workstation-hieradata-master/hiera.yaml

Linux (bash):

sudo gem install puppet --no-ri --no-doc; \
sudo puppet module install call-workstation; \
cd ~; git clone https://github.com/call/workstation-hieradata.git; \
sudo puppet apply -e "class {'workstation': user => $(whoami)}" \
    --hiera_config ~/workstation-hieradata/hiera.yaml