This website works better with JavaScript.
Home
Help
Sign In
LILiK
/
openwrt-packages-dist
Watch
5
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11835
Commits
1
Branch
46 MiB
Tree:
a9f8712e63
lilik-openwrt-22.03
Branches
Tags
${ item.name }
Create branch
${ searchTerm }
from 'a9f8712e63'
${ noResults }
openwrt-packages-dist
/
net
/
strongswan
/
files
/
etc
/
hotplug.d
/
ipsec
/
01-user
7 lines
75 B
Raw
Normal View
History
strongswan: add openwrt hotplug script handling Ipsec user script (/etc/ipsec.user) now get called indirectly by openwrt "/sbin/hotplug-call". So other packages could also install their scripts in "/etc/hotplug.d/ipsec". Signed-off-by: Florian Eckert <fe@dev.tdt.de>
6 years ago
#!/bin/sh
[ -e "/etc/ipsec.user" ] && {
. /etc/ipsec.user "$2"
}
exit 0