Skip to content

Commit

Permalink
Finish off renaming. (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerrit91 authored Jul 1, 2022
1 parent 2a59bf9 commit a4a2894
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* @metal-stack/ipmi-catcher-maintainers
* @metal-stack/metal-bmc-maintainers
10 changes: 5 additions & 5 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ services:
volumes:
- ${PWD}/dhcpd.leases:/dhcpd.leases
environment:
BMC_CATCHER_LEASE_FILE: /dhcpd.leases
BMC_CATCHER_PARTITION_ID: partition
BMC_CATCHER_METAL_API_URL: http://localhost:8080
BMC_CATCHER_METAL_API_HMAC_KEY: test
BMC_CATCHER_IGNORE_MACS: "aa:aa:aa:aa:aa:aa"
METAL_BMC_LEASE_FILE: /dhcpd.leases
METAL_BMC_PARTITION_ID: partition
METAL_BMC_METAL_API_URL: http://localhost:8080
METAL_BMC_METAL_API_HMAC_KEY: test
METAL_BMC_IGNORE_MACS: "aa:aa:aa:aa:aa:aa"

2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (

func main() {
var cfg domain.Config
if err := envconfig.Process("BMC_CATCHER", &cfg); err != nil {
if err := envconfig.Process("METAL_BMC", &cfg); err != nil {
panic(fmt.Errorf("bad configuration: %w", err))
}

Expand Down

0 comments on commit a4a2894

Please sign in to comment.