mirror of
https://github.com/openwrt/packages.git
synced 2025-02-23 04:16:44 +00:00
atlas-sw-probe: fix copypaste error and clean tmp dir on exit
- Fix copypaste error for PUB_KEY link creation - Clean tmp dir on exit to clear any remaining data Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
This commit is contained in:
net/atlas-sw-probe
@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=atlas-sw-probe
|
||||
PKG_VERSION:=5020
|
||||
PKG_RELEASE:=3
|
||||
PKG_RELEASE:=4
|
||||
|
||||
PKG_SOURCE_PROTO:=git
|
||||
PKG_SOURCE_URL:=https://github.com/RIPE-NCC/ripe-atlas-software-probe.git
|
||||
|
@ -100,7 +100,7 @@ create_key() {
|
||||
|
||||
#Link priv/pub key
|
||||
[ -f $PRIV_KEY_FILE ] || ln -s $probe_key $PRIV_KEY_FILE
|
||||
[ -f $PRIV_KEY_FILE ] || ln -s $probe_pub_key $PUB_KEY_FILE
|
||||
[ -f $PUB_KEY_FILE ] || ln -s $probe_pub_key $PUB_KEY_FILE
|
||||
|
||||
#Fix permission
|
||||
chown atlas $probe_key $probe_pub_key
|
||||
@ -177,6 +177,9 @@ stop_service() {
|
||||
kill "$tunnel_pid"
|
||||
fi
|
||||
fi
|
||||
|
||||
# Clean run dir
|
||||
rm -r $TMP_BASE_DIR
|
||||
}
|
||||
|
||||
safe_mkdir() {
|
||||
|
Reference in New Issue
Block a user