Compare commits

..

2 Commits

Author SHA1 Message Date
b2f100f987 fix(ci): inject current branch name in release tasks
All checks were successful
arcad/edge/pipeline/head This commit looks good
2023-10-02 21:22:44 -06:00
0fded0170a feat(storage-server): fix service
All checks were successful
arcad/edge/pipeline/head This commit looks good
2023-10-02 20:56:53 -06:00
3 changed files with 3 additions and 3 deletions

2
Jenkinsfile vendored
View File

@ -35,7 +35,7 @@ pipeline {
])
]) {
sh 'make .mktools'
sh 'make gitea-release'
sh "MKT_PROJECT_VERSION_BRANCH_NAME=${env.BRANCH_NAME} make gitea-release"
}
}
}

View File

@ -1,7 +1,7 @@
#!/sbin/openrc-run
command="/usr/bin/storage-server"
command_args=""
command_args=run""
supervisor=supervise-daemon
output_log="/var/log/storage-server.log"
error_log="$output_log"

View File

@ -6,7 +6,7 @@ After=network.target
Type=simple
Restart=on-failure
EnvironmentFile=/etc/storage-server/environ
ExecStart=/usr/bin/storage-server
ExecStart=/usr/bin/storage-server run
EnvironmentFile=/etc/storage-server/environ
NoNewPrivileges=yes
PrivateTmp=yes