From 42f4092d8410669ec131d5c4d68f7b46c0d9948f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Sat, 11 Jun 2022 11:26:54 +0200 Subject: [PATCH] rename project to systemd-vaultd --- .gitignore | 7 ++++++- default.nix | 4 ++-- go.mod | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 3c2977f..9e3ae6d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,12 @@ .DS_Store .idea *.log -systemd-vault + +# binary +systemd-vaultd + +# nix-build symlinks +result* # Byte-compiled / optimized / DLL files __pycache__/ diff --git a/default.nix b/default.nix index f57f2fd..c46ef00 100644 --- a/default.nix +++ b/default.nix @@ -1,7 +1,7 @@ with import {}; buildGoModule { - name = "systemd-vault"; + name = "systemd-vaultd"; src = ./.; vendorSha256 = null; checkInputs = [ @@ -11,7 +11,7 @@ buildGoModule { ]; meta = with lib; { description = "A proxy for secrets between systemd services and vault"; - homepage = "https://github.com/numtide/systemd-vault"; + homepage = "https://github.com/numtide/systemd-vaultd"; license = licenses.mit; maintainers = with maintainers; [ mic92 ]; platforms = platforms.unix; diff --git a/go.mod b/go.mod index 27db5fc..18ea0a7 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/numtide/systemd-vault +module github.com/numtide/systemd-vaultd go 1.17