From 339e3b4f056760a987d5aa3d7df599532189c2dc Mon Sep 17 00:00:00 2001 From: Anthony Cicchetti Date: Wed, 14 Oct 2020 12:42:48 -0400 Subject: [PATCH] Topgrade.toml --- playbooks/roles/common/tasks/main.yml | 6 ++++ topgrade/topgrade.toml | 45 +++++++++++++++++++++++++++ 2 files changed, 51 insertions(+) create mode 100644 topgrade/topgrade.toml diff --git a/playbooks/roles/common/tasks/main.yml b/playbooks/roles/common/tasks/main.yml index 4da355d..46ca137 100644 --- a/playbooks/roles/common/tasks/main.yml +++ b/playbooks/roles/common/tasks/main.yml @@ -70,3 +70,9 @@ dest: ~/.config/kitty/kitty.conf state: link +- name: Lay down topgrade.toml + file: + src: ~/.dotfiles/topgrade/topgrade.toml + dest: ~/.config/topgrade.toml + state: link + diff --git a/topgrade/topgrade.toml b/topgrade/topgrade.toml new file mode 100644 index 0000000..e57fddb --- /dev/null +++ b/topgrade/topgrade.toml @@ -0,0 +1,45 @@ +# Additional git repositories to pull +#git_repos = [ +# "~/src/*/", +# "~/.config/something" +#] + +# Disable specific steps - same options as the command line flag +disable = ["go"] + +# Run specific steps - same options as the command line flag +#only = ["system", "emacs"] + +# Do not ask to retry failed steps (default: false) +#no_retry = true + +# Run inside tmux +#run_in_tmux = true + +# List of remote machines with Topgrade installed on them +#remote_topgrades = ["toothless", "pi", "parnas"] + +# Arguments to pass SSH when upgrading remote systems +#ssh_arguments = "-o ConnectTimeout=2" + +# Arguments to pass Git when pulling Repositories +#git_arguments = "--rebase --autostash" + +# Arguments to pass tmux when pulling Repositories +#tmux_arguments = "-S /var/tmux.sock" + +# Arguments to pass yay when updating packages +#yay_arguments = "--nodevel" + +# Do not set the terminal title +#set_title = false +# Commands to run before anything +#[pre_commands] +#"Emacs Snapshot" = "rm -rf ~/.emacs.d/elpa.bak && cp -rl ~/.emacs.d/elpa ~/.emacs.d/elpa.bak" + +# Custom commands +#[commands] +#"Python Environment" = "~/dev/.env/bin/pip install -i https://pypi.python.org/simple -U --upgrade-strategy eager jupyter" + +# Cleanup temporary or old files +#cleanup = true