aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mbsync/install.sh
diff options
context:
space:
mode:
authorToby Vincent <tobyv@tobyvin.dev>2024-05-15 20:03:30 -0500
committerToby Vincent <tobyv@tobyvin.dev>2024-05-15 20:16:37 -0500
commit5bf571df14cd2ed7cf6ca6ecadc26da53d61af06 (patch)
tree47942cf31b8fb04a35eb7cb6406117f94a5f2b77 /mbsync/install.sh
parent69e420c803099db126fffd3ca4bac5e396da4e1d (diff)
feat(mail): move all mail stuff inside notmuch hooks
Diffstat (limited to 'mbsync/install.sh')
-rwxr-xr-xmbsync/install.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/mbsync/install.sh b/mbsync/install.sh
deleted file mode 100755
index 79e0fd5..0000000
--- a/mbsync/install.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-
-pkgname=mbsync
-
-if ! command -v "$pkgname" >/dev/null; then
- printf '%s: %s not found, skipping...\n' "$0" "$pkgname"
- exit 0
-fi
-
-printf "%s: Installing services\n" "$0"
-
-for instance in gmail porkbun; do
- systemctl --user enable --now --no-block mbsync@"$instance".service
- systemctl --user enable --now --no-block maildir-notify@"$instance".service
-done