Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
gdbtek committed Jan 17, 2019
1 parent 289df08 commit ac8257c
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,16 @@ function main()

"${appFolderPath}/../../../cookbooks/brew/recipes/reinstall.bash" 'true'

# Non-Brew Applications

"${appFolderPath}/../../../cookbooks/aws-cli/recipes/install.bash"
"${appFolderPath}/../../../cookbooks/go-lang/recipes/install.bash"
"${appFolderPath}/../../../cookbooks/jq/recipes/install.bash"
"${appFolderPath}/../../../cookbooks/node-js/recipes/install.bash"
"${appFolderPath}/../../../cookbooks/packer/recipes/install.bash"
"${appFolderPath}/../../../cookbooks/terraform/recipes/install.bash"
"${appFolderPath}/../../../cookbooks/test-ssl/recipes/install.bash"

# Brew Applications

sudo -u "${SUDO_USER}" "${appFolderPath}/../../../cookbooks/ack/recipes/install.bash"
Expand Down Expand Up @@ -41,16 +51,6 @@ function main()
sudo -u "${SUDO_USER}" "${appFolderPath}/../../../cookbooks/chefdk/recipes/install.bash"
sudo -u "${SUDO_USER}" "${appFolderPath}/../../../cookbooks/java/recipes/install.bash"

# Non-Brew Applications

"${appFolderPath}/../../../cookbooks/aws-cli/recipes/install.bash"
"${appFolderPath}/../../../cookbooks/go-lang/recipes/install.bash"
"${appFolderPath}/../../../cookbooks/jq/recipes/install.bash"
"${appFolderPath}/../../../cookbooks/node-js/recipes/install.bash"
"${appFolderPath}/../../../cookbooks/packer/recipes/install.bash"
"${appFolderPath}/../../../cookbooks/terraform/recipes/install.bash"
"${appFolderPath}/../../../cookbooks/test-ssl/recipes/install.bash"

# Finish

postUpMessage
Expand Down
32 changes: 32 additions & 0 deletions roles/nam/roles/macbook-pro-gui.bash
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
#!/bin/bash -e

function main()
{
local -r appFolderPath="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"

# Load Libraries

source "${appFolderPath}/../../../libraries/util.bash"

checkRequireNonRootUser

# Brew Cask Applications

"${appFolderPath}/../../../cookbooks/1password/recipes/install.bash"
"${appFolderPath}/../../../cookbooks/beyond-compare/recipes/install.bash"
"${appFolderPath}/../../../cookbooks/blue-jeans/recipes/install.bash"
"${appFolderPath}/../../../cookbooks/dropbox/recipes/install.bash"
"${appFolderPath}/../../../cookbooks/google-backup-and-sync/recipes/install.bash"
"${appFolderPath}/../../../cookbooks/google-chrome/recipes/install.bash"
"${appFolderPath}/../../../cookbooks/slack/recipes/install.bash"
"${appFolderPath}/../../../cookbooks/tower/recipes/install.bash"
"${appFolderPath}/../../../cookbooks/transmit/recipes/install.bash"
"${appFolderPath}/../../../cookbooks/visual-studio-code/recipes/install.bash"
"${appFolderPath}/../../../cookbooks/vmware-fusion/recipes/install.bash"

# Finish

postUpMessage
}

main "${@}"

0 comments on commit ac8257c

Please sign in to comment.