diff options
| author | Joe Carstairs <me@joeac.net> | 2026-07-03 10:09:47 +0100 |
|---|---|---|
| committer | Joe Carstairs <me@joeac.net> | 2026-07-03 10:09:47 +0100 |
| commit | e2d3c0537657752359975c62c3f7dc542e63532a (patch) | |
| tree | 95b8298e6bff0bf597ec1242ef1f42ff9315add0 /vaultwarden | |
| parent | c62f30ec324a511989c80240ebb21bb8c6423eec (diff) | |
make install installs vaultwarden data dir
Diffstat (limited to 'vaultwarden')
| -rw-r--r-- | vaultwarden/install.mk | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/vaultwarden/install.mk b/vaultwarden/install.mk new file mode 100644 index 0000000..42333f7 --- /dev/null +++ b/vaultwarden/install.mk @@ -0,0 +1,12 @@ +.PHONY: install +install: $(VAULTWARDEN_DATA_DIR) + +.PHONY: reinstall +reinstall: $(VAULTWARDEN_DATA_DIR) + +$(VAULTWARDEN_DATA_DIR): + sudo mkdir -p $(VAULTWARDEN_DATA_DIR) + +.PHONY: uninstall +uninstall: + $(info Nothing to do) |
