Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

change bind-address option #588

Merged
merged 1 commit into from
Aug 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@
- Added possibility to add custom request parameters to requests done by the agent. This is done through
a `custom_parameters.config` file placed in the agent dir or `/etc/oidc-agent`

## Changes

- Renamed the long option of `oidc-agent` `-a` from `--bind_address` to
`--bind-address`.

### Change / Enhancement / Bugfix

The previous release stated that:
Expand Down
2 changes: 1 addition & 1 deletion src/oidc-agent/oidc-agent_options.c
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ static struct argp_option options[] = {
"'XXXXXX' as the last six characters of a directory in the path to "
"substitute them with random characters.",
1},
{"bind_address", 'a', "PATH", OPTION_ALIAS, NULL, 1},
{"bind-address", 'a', "PATH", OPTION_ALIAS, NULL, 1},
{"always-allow-idtoken", OPT_ALWAYS_ALLOW_IDTOKEN, 0, 0,
"Always allow id-token requests without manual approval by the user.", 1},
{"json", OPT_JSON, 0, 0,
Expand Down
Loading