Fix transmission config path to use homebrew location

- Homebrew's transmission-cli service uses /opt/homebrew/var/transmission/
  not ~/.config/transmission-daemon/
- Add task to clean up old config directory
- Update zettelkasten with correct paths

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Erich Blume 2026-01-14 11:21:56 -08:00
commit 6bb5f323d6
2 changed files with 7 additions and 6 deletions

View file

@ -16,11 +16,10 @@
state: directory
mode: '0755'
- name: Ensure transmission config directory exists
- name: Remove old config directory (was deployed to wrong location)
ansible.builtin.file:
path: "{{ transmission_config_dir }}"
state: directory
mode: '0755'
path: ~/.config/transmission-daemon
state: absent
- name: Stop transmission before config changes
ansible.builtin.command: brew services stop transmission-cli