Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fmt
  • Loading branch information
kylecarbs committed May 3, 2024
commit 294fb31d70e760f2c9aaf74dbf6a93d7ea57baca
24 changes: 12 additions & 12 deletions scripts/linux-pkg/nfpm-alpine.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,21 @@ vendor: Coder
homepage: https://coder.com
maintainer: Coder <support@coder.com>
description: |
Provision development environments with infrastructure with code
Provision development environments with infrastructure with code
license: AGPL-3.0
suggests:
- postgresql
- postgresql

scripts:
preinstall: preinstall.sh
preinstall: preinstall.sh

contents:
- src: coder
dst: /usr/bin/coder
- src: coder.env
dst: /etc/coder.d/coder.env
type: "config|noreplace"
- src: coder-workspace-proxy-openrc
dst: /etc/init.d/coder-workspace-proxy
- src: coder-openrc
dst: /etc/init.d/coder
- src: coder
dst: /usr/bin/coder
- src: coder.env
dst: /etc/coder.d/coder.env
type: "config|noreplace"
- src: coder-workspace-proxy-openrc
dst: /etc/init.d/coder-workspace-proxy
- src: coder-openrc
dst: /etc/init.d/coder
2 changes: 1 addition & 1 deletion scripts/package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ nfpm_config_file="nfpm.yaml"

# Use nfpm-alpine.yaml when building for Alpine (OpenRC).
if [[ "$format" == "apk" ]]; then
nfpm_config_file="nfpm-alpine.yaml"
nfpm_config_file="nfpm-alpine.yaml"
fi

pushd "$temp_dir"
Expand Down