[PR #90] [MERGED] add wiretrustee LOGIN command #2532

Closed
opened 2025-11-20 07:11:27 -05:00 by saavagebueno · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/netbirdio/netbird/pull/90
Author: @braginini
Created: 8/17/2021
Status: Merged
Merged: 8/18/2021
Merged by: @braginini

Base: mainHead: wiretrustee-login-flow


📝 Commits (10+)

  • 7bd9d99 feature: add wiretrustee LOGIN command
  • da4881d chore: add management initial connection timeout
  • ce8f544 test: add login cmd test
  • aa9835e test: validate generated config in login cmd
  • 82b3efa test: add up command test
  • cbc1715 fix: golint errors
  • 6cab1b0 chore: add timeout to signal client creation method
  • 72905df test: close wireguard interface once test finished
  • 73f911f fix: service up command
  • 35eca10 fix: golint error

📊 Changes

14 files changed (+555 additions, -242 deletions)

View changed files

client/cmd/login.go (+152 -0)
client/cmd/login_test.go (+68 -0)
📝 client/cmd/root.go (+7 -2)
📝 client/cmd/service.go (+0 -9)
📝 client/cmd/service_controller.go (+7 -1)
client/cmd/service_test.go (+0 -129)
client/cmd/testutil.go (+54 -0)
📝 client/cmd/up.go (+36 -79)
client/cmd/up_test.go (+110 -0)
📝 client/internal/config.go (+61 -20)
client/testdata/management.json (+33 -0)
client/testdata/store.json (+21 -0)
📝 management/client/client.go (+3 -1)
📝 signal/client/client.go (+3 -1)

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/netbirdio/netbird/pull/90 **Author:** [@braginini](https://github.com/braginini) **Created:** 8/17/2021 **Status:** ✅ Merged **Merged:** 8/18/2021 **Merged by:** [@braginini](https://github.com/braginini) **Base:** `main` ← **Head:** `wiretrustee-login-flow` --- ### 📝 Commits (10+) - [`7bd9d99`](https://github.com/netbirdio/netbird/commit/7bd9d991d3339246dd972aca1979fd86b26e71e1) feature: add wiretrustee LOGIN command - [`da4881d`](https://github.com/netbirdio/netbird/commit/da4881d7c18faa0741cead6378f82f29d0747e4a) chore: add management initial connection timeout - [`ce8f544`](https://github.com/netbirdio/netbird/commit/ce8f5442b46a6b05d1f8ec3f843f74dbc9c48997) test: add login cmd test - [`aa9835e`](https://github.com/netbirdio/netbird/commit/aa9835e92062010afcd228874d6797b3445c3c66) test: validate generated config in login cmd - [`82b3efa`](https://github.com/netbirdio/netbird/commit/82b3efada8899063a6d90b6aa5b2301dad9540e7) test: add up command test - [`cbc1715`](https://github.com/netbirdio/netbird/commit/cbc17159fdd68b342b196dee0162c6544c2d55e7) fix: golint errors - [`6cab1b0`](https://github.com/netbirdio/netbird/commit/6cab1b02db2fe15584961248e65159e9f175280e) chore: add timeout to signal client creation method - [`72905df`](https://github.com/netbirdio/netbird/commit/72905df8a140ae54bc4a2cf9b08614e88bc938d3) test: close wireguard interface once test finished - [`73f911f`](https://github.com/netbirdio/netbird/commit/73f911f7c025d8e8038734152567a59b823ae641) fix: service up command - [`35eca10`](https://github.com/netbirdio/netbird/commit/35eca1092ff818266482b47f7a8c365b07c18168) fix: golint error ### 📊 Changes **14 files changed** (+555 additions, -242 deletions) <details> <summary>View changed files</summary> ➕ `client/cmd/login.go` (+152 -0) ➕ `client/cmd/login_test.go` (+68 -0) 📝 `client/cmd/root.go` (+7 -2) 📝 `client/cmd/service.go` (+0 -9) 📝 `client/cmd/service_controller.go` (+7 -1) ➖ `client/cmd/service_test.go` (+0 -129) ➕ `client/cmd/testutil.go` (+54 -0) 📝 `client/cmd/up.go` (+36 -79) ➕ `client/cmd/up_test.go` (+110 -0) 📝 `client/internal/config.go` (+61 -20) ➕ `client/testdata/management.json` (+33 -0) ➕ `client/testdata/store.json` (+21 -0) 📝 `management/client/client.go` (+3 -1) 📝 `signal/client/client.go` (+3 -1) </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
saavagebueno added the pull-request label 2025-11-20 07:11:27 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: SVI/netbird#2532