From 1ae5143fb7b4dfa0e4d2c18d9f35ca74437d3d2b Mon Sep 17 00:00:00 2001 From: Leendert de Borst Date: Tue, 23 Jul 2024 21:09:11 +0200 Subject: [PATCH] Update install.sh dependencies (#113) --- .github/workflows/docker-compose-build.yml | 6 +++--- .gitignore | 2 +- src/AliasVault.Admin/Config.cs | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/docker-compose-build.yml b/.github/workflows/docker-compose-build.yml index 07b5079b9..2ccc5c233 100644 --- a/.github/workflows/docker-compose-build.yml +++ b/.github/workflows/docker-compose-build.yml @@ -15,10 +15,10 @@ jobs: options: --privileged steps: - uses: actions/checkout@v2 - - name: Set permissions and run init.sh + - name: Set permissions and run install.sh run: | - chmod +x init.sh - ./init.sh + chmod +x install.sh + ./install.sh - name: Set up Docker Compose run: | # Change the exposed host port of the SmtpService from 25 to 2525 because port 25 is not allowed in GitHub Actions diff --git a/.gitignore b/.gitignore index 5369ec659..c4730a9e7 100644 --- a/.gitignore +++ b/.gitignore @@ -379,5 +379,5 @@ src/AliasVault.Client/wwwroot/appsettings.Development.json # appsettings.Development.json is added manually if needed, it should not be committed. src/Tests/AliasVault.E2ETests/appsettings.Development.json -# .env is generated by init.sh and therefore should be ignored +# .env is generated by install.sh and therefore should be ignored .env diff --git a/src/AliasVault.Admin/Config.cs b/src/AliasVault.Admin/Config.cs index 94fe54e38..04223e1be 100644 --- a/src/AliasVault.Admin/Config.cs +++ b/src/AliasVault.Admin/Config.cs @@ -13,14 +13,14 @@ namespace AliasVault.Admin; public class Config { /// - /// Gets or sets the admin password hash which is generated by init.sh and will be set + /// Gets or sets the admin password hash which is generated by install.sh and will be set /// as the default password for the admin user. /// public string AdminPasswordHash { get; set; } = "false"; /// /// Gets or sets the last time the password was changed. This is used to check if the - /// password hash generated by init.sh should replace the current password hash if user already exists. + /// password hash generated by install.sh should replace the current password hash if user already exists. /// public DateTime LastPasswordChanged { get; set; } = DateTime.MinValue; }