This is the first commit that brings the privet dotfiles to a public reop previously this was all one puppet module. Now this has been split out so I can put all of the private files in a private puppet module
19 lines
236 B
Bash
Executable file
19 lines
236 B
Bash
Executable file
#!/usr/bin/env bash
|
|
#
|
|
# Updates a systems packages and the dotfiles
|
|
#
|
|
# Author: Ade Attwood <code@adeattwood.co.uk>
|
|
#
|
|
|
|
set -e
|
|
|
|
#
|
|
# Update apt packages
|
|
#
|
|
sudo apt-get update;
|
|
sudo apt-get upgrade;
|
|
|
|
#
|
|
# Update dotfiles
|
|
#
|
|
dotfiles update
|