mirror of
https://github.com/ovh/the-bastion.git
synced 2026-05-09 08:25:27 +02:00
[GH-ISSUE #372] Undefined subroutine &main::EXIT #100
Labels
No labels
answered
bug
documentation
enhancement
enhancement
feature
feature
kept-open-for-info
pull-request
question
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/the-bastion#100
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Krenodeno on GitHub (Mar 13, 2023).
Original GitHub issue: https://github.com/ovh/the-bastion/issues/372
Hi,
Freshly installed a bastion on a Ubuntu 22.04 host last friday. I added a group, a server in that group. So far everything went great.
Today I wanted to add another group with the following command:
bastion --osh groupCreate --group group1 --owner user1 --algo ed25519 --no-keyNote the use of
algoandno-keyoptions.And I got the following error:
Looking at the source file, around line 48:
It looks like the
EXITfunction is unknow here.@speed47 commented on GitHub (Mar 14, 2023):
Indeed, that's a typo, and the only one of its kind according to
git grep!The code path you took with
--no-key --algois not used by the tests it seems.Fixing this, thanks for the report!