diff options
| author | Shulhan <ms@kilabit.info> | 2026-01-26 02:21:21 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2026-01-26 02:21:21 +0700 |
| commit | 3ccf851798e6d79bd5cfe307989a58b2e037c6e2 (patch) | |
| tree | e1b6bd00fc08832068ee69b85394fb249743355c | |
| parent | 9ba27374eea99b31d6d5b47c6358133c781e0a89 (diff) | |
| download | rescached-3ccf851798e6d79bd5cfe307989a58b2e037c6e2.tar.xz | |
make: add task to deploy to local machine using rsync
| -rw-r--r-- | Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -203,6 +203,13 @@ uninstall-macos: uninstall-common rm -f /Library/LaunchDaemons/info.kilabit.rescached.plist +##---- Deploy to local machine. + +.PHONY: deploy.local +deploy.local: build + sudo rsync _bin/linux_amd64/rescached /usr/bin/rescached + sudo systemctl restart rescached.service + ##---- Tasks for deploying to public DNS server. .PHONY: deploy-personal-server |
