From 325c1e102a2f4fdf9bbb84d57ca0866a02758b01 Mon Sep 17 00:00:00 2001 From: Anthony Cicchetti Date: Tue, 16 Feb 2021 16:49:59 -0500 Subject: [PATCH] Remove (h|w)akatime --- playbooks/input.yml | 7 ------- playbooks/main.yml | 7 ------- playbooks/roles/common/tasks/main.yml | 7 ------- playbooks/roles/common/templates/wakatime.cfg.j2 | 3 --- 4 files changed, 24 deletions(-) delete mode 100644 playbooks/roles/common/templates/wakatime.cfg.j2 diff --git a/playbooks/input.yml b/playbooks/input.yml index 4f49b27..7142af3 100644 --- a/playbooks/input.yml +++ b/playbooks/input.yml @@ -19,10 +19,6 @@ prompt: "Don you want emacs-plus?" private: no default: "no" - - name: _hakatime_api_key - prompt: "What's your hakatime api key? (won't show up at the prompt)" - private: yes - default: "" tasks: - block: - name: Set dev machine fact @@ -37,6 +33,3 @@ - name: Set emacs plus fact set_fact: _emacs_plus: "{{ _emacs_plus }}" - - name: Set Hakatime api key fact - set_fact: - _hakatime_api_key: "{{ _hakatime_api_key }}" diff --git a/playbooks/main.yml b/playbooks/main.yml index 965ec14..06af043 100644 --- a/playbooks/main.yml +++ b/playbooks/main.yml @@ -21,7 +21,6 @@ - rust_extras: "{{ _rust_extras }}" - nightly_neovim: "{{ _nightly_neovim }}" - emacs_plus: "{{ _emacs_plus }}" - - hakatime_api_key: "{{ _hakatime_api_key }}" - hosts: os_Fedora gather_facts: True @@ -34,7 +33,6 @@ - dev_machine: "{{ _dev_machine }}" - rust_extras: "{{ _rust_extras }}" - nightly_neovim: "{{ _nightly_neovim }}" - - hakatime_api_key: "{{ _hakatime_api_key }}" - hosts: os_Gentoo gather_facts: True @@ -47,7 +45,6 @@ - dev_machine: "{{ _dev_machine }}" - rust_extras: "{{ _rust_extras }}" - nightly_neovim: "{{ _nightly_neovim }}" - - hakatime_api_key: "{{ _hakatime_api_key }}" - hosts: os_Funtoo gather_facts: True @@ -60,7 +57,6 @@ - dev_machine: "{{ _dev_machine }}" - rust_extras: "{{ _rust_extras }}" - nightly_neovim: "{{ _nightly_neovim }}" - - hakatime_api_key: "{{ _hakatime_api_key }}" - hosts: os_Archlinux gather_facts: True @@ -73,7 +69,6 @@ - dev_machine: "{{ _dev_machine }}" - rust_extras: "{{ _rust_extras }}" - nightly_neovim: "{{ _nightly_neovim }}" - - hakatime_api_key: "{{ _hakatime_api_key }}" - hosts: os_Ubuntu gather_facts: False @@ -86,7 +81,6 @@ - dev_machine: "{{ _dev_machine }}" - rust_extras: "{{ _rust_extras }}" - nightly_neovim: "{{ _nightly_neovim }}" - - hakatime_api_key: "{{ _hakatime_api_key }}" - hosts: os_openSUSE* gather_facts: True @@ -99,5 +93,4 @@ - dev_machine: "{{ _dev_machine }}" - rust_extras: "{{ _rust_extras }}" - nightly_neovim: "{{ _nightly_neovim }}" - - hakatime_api_key: "{{ _hakatime_api_key }}" diff --git a/playbooks/roles/common/tasks/main.yml b/playbooks/roles/common/tasks/main.yml index f2ea343..0aa87cd 100644 --- a/playbooks/roles/common/tasks/main.yml +++ b/playbooks/roles/common/tasks/main.yml @@ -46,13 +46,6 @@ path: ~/bin state: directory -- name: Lay down wakatime.cfg - when: - - hakatime_api_key != '' - template: - src: wakatime.cfg.j2 - dest: ~/.wakatime.cfg - - name: Lay down .ideavimrc file: src: ~/.dotfiles/ideavim/ideavimrc diff --git a/playbooks/roles/common/templates/wakatime.cfg.j2 b/playbooks/roles/common/templates/wakatime.cfg.j2 deleted file mode 100644 index c701af1..0000000 --- a/playbooks/roles/common/templates/wakatime.cfg.j2 +++ /dev/null @@ -1,3 +0,0 @@ -[settings] -api_key={{ hakatime_api_key }} -api_url=https://hakatime.anthonycicchetti.com/api/v1/users/current/heartbeats.bulk