Skip to content

Commit

Permalink
fix: update configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
cenk1cenk2 committed Jun 18, 2022
1 parent 810b321 commit 3b5ce07
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
**
!dist/
!.docker/
!.tags
2 changes: 1 addition & 1 deletion Dockerfile-stable
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.13
FROM alpine:latest

ENV REPOSITORY https://github.com/SoftEtherVPN/SoftEtherVPN.git

Expand Down
9 changes: 6 additions & 3 deletions pipe/tasks.go
Original file line number Diff line number Diff line change
Expand Up @@ -341,15 +341,18 @@ func CreateBridgeDevice(tl *TaskList[Pipe]) *Task[Pipe] {
"addif",
t.Pipe.LinuxBridge.BridgeInterface,
t.Pipe.SoftEther.TapInterface,
t.Pipe.LinuxBridge.UpstreamInterface,
).
SetLogLevel(LOG_LEVEL_DEBUG, LOG_LEVEL_DEFAULT, LOG_LEVEL_DEBUG).
AddSelfToTheTask()

t.CreateCommand(
"brctl",
"addif",
"ip",
"link",
"set",
"dev",
t.Pipe.LinuxBridge.BridgeInterface,
t.Pipe.LinuxBridge.UpstreamInterface,
"up",
).
SetLogLevel(LOG_LEVEL_DEBUG, LOG_LEVEL_DEFAULT, LOG_LEVEL_DEBUG).
AddSelfToTheTask()
Expand Down

0 comments on commit 3b5ce07

Please sign in to comment.