Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
O
OpenConnect
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Railgun
OpenConnect
Commits
6da33e3a
Commit
6da33e3a
authored
Aug 20, 2022
by
神楽坂玲奈
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
signal
parent
c5054498
Pipeline
#15944
failed with stages
in 49 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
1 deletion
+24
-1
entrypoint.sh
entrypoint.sh
+24
-1
No files found.
entrypoint.sh
View file @
6da33e3a
...
@@ -18,4 +18,27 @@ echo $interface up
...
@@ -18,4 +18,27 @@ echo $interface up
PATH
=
$PATH
:/ iptables
-V
PATH
=
$PATH
:/ iptables
-V
#trap 等信号来了down
#trap 等信号来了down
sleep
infinity
pid
=
0
run_stop
()
{
signalCode
=
$1
if
[
-n
"
$DOWN_SCRIPT
"
]
;
then
eval
"
$DOWN_SCRIPT
"
fi
if
[
$pid
-ne
0
]
;
then
kill
"-
$signalCode
"
"
$pid
"
wait
"
$pid
"
fi
exit
$((
128
+
signalCode
))
;
}
trap
'kill ${!}; run_stop 2'
SIGTERM
trap
'kill ${!}; run_stop 15'
SIGINT
sleep
infinity &
pid
=
"
$!
"
# wait forever
wait
"
$pid
"
pid
=
0
run_stop 1
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment