mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-16 11:09:29 +00:00
22 lines
459 B
Bash
22 lines
459 B
Bash
#!/bin/bash
|
|
set +e
|
|
|
|
if [ -z "$__apt_updated" ]; then
|
|
_run "Update APT cache" sudo apt-get update
|
|
__apt_updated=yes
|
|
fi
|
|
|
|
function _apt {
|
|
local pkg=$1
|
|
if ! dpkg -s $pkg >/dev/null 2>&1; then
|
|
_run "[apt] Install $pkg" sudo apt-get install -y $1
|
|
else
|
|
echo "[apt] $pkg is already installed, skipping."
|
|
fi
|
|
}
|
|
|
|
_apt software-properties-common
|
|
|
|
function _ppa {
|
|
_run "[apt] Add PPA: $1" sudo add-apt-repository -u -y ppa:$1
|
|
}
|