mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-16 03:00:08 +00:00
71 lines
1.3 KiB
Bash
Executable file
71 lines
1.3 KiB
Bash
Executable file
#!/bin/bash
|
|
set +e
|
|
|
|
RECIPE_PATH=${HOME}/dotfiles/recipes
|
|
RECIPES=$(ls $RECIPE_PATH|grep -v '^_')
|
|
INSTALL=()
|
|
STACK=()
|
|
|
|
while [[ $# -gt 0 ]]; do
|
|
case $1 in
|
|
-D|--debug)
|
|
DEBUG=1
|
|
shift
|
|
;;
|
|
-l|--list)
|
|
echo Available recipes:
|
|
for recipe in $RECIPES; do
|
|
echo " $recipe"
|
|
done
|
|
exit
|
|
;;
|
|
-A|--all)
|
|
INSTALL=($RECIPES)
|
|
shift
|
|
;;
|
|
*)
|
|
INSTALL+=("$1")
|
|
shift
|
|
esac
|
|
done
|
|
|
|
INSTALL=($(for recipe in "${INSTALL[@]}"; do
|
|
echo $recipe
|
|
done |sort | uniq))
|
|
|
|
function _run {
|
|
local msg=$1
|
|
shift
|
|
if [ -z "$DEBUG" ]; then
|
|
echo -n "$msg..."
|
|
$@ 2>&1 >/dev/null
|
|
else
|
|
echo "$msg..."
|
|
$@
|
|
fi
|
|
echo "done."
|
|
}
|
|
|
|
function _recipe {
|
|
STACK+=("$1")
|
|
echo "-- Recipe '${STACK[@]}' --"
|
|
source ${HOME}/dotfiles/recipes/$1
|
|
unset STACK[${#STACK[@]}-1]
|
|
echo "-- Recipe '${STACK[@]}' --"
|
|
}
|
|
|
|
USER=${USER:-$(whoami)}
|
|
_PLATFORM=$(uname -s | awk '{print tolower($1)}')
|
|
|
|
if [ -z "${INSTALL[@]}" ]; then
|
|
INSTALL=(base)
|
|
fi
|
|
|
|
|
|
echo "-- Provisioning [${INSTALL[@]}] --"
|
|
for recipe in "${INSTALL[@]}"; do
|
|
_recipe $recipe
|
|
done
|
|
|
|
echo "Finished, restarting shell."
|
|
exec $SHELL
|