Final Prep
This commit is contained in:
1
opkg-feed/installer/openwrt-sdxlemur-skel/usr/sbin/arping
Symbolic link
1
opkg-feed/installer/openwrt-sdxlemur-skel/usr/sbin/arping
Symbolic link
@@ -0,0 +1 @@
|
||||
../../bin/busybox
|
||||
1
opkg-feed/installer/openwrt-sdxlemur-skel/usr/sbin/brctl
Symbolic link
1
opkg-feed/installer/openwrt-sdxlemur-skel/usr/sbin/brctl
Symbolic link
@@ -0,0 +1 @@
|
||||
../../bin/busybox
|
||||
1
opkg-feed/installer/openwrt-sdxlemur-skel/usr/sbin/chroot
Symbolic link
1
opkg-feed/installer/openwrt-sdxlemur-skel/usr/sbin/chroot
Symbolic link
@@ -0,0 +1 @@
|
||||
../../bin/busybox
|
||||
1
opkg-feed/installer/openwrt-sdxlemur-skel/usr/sbin/crond
Symbolic link
1
opkg-feed/installer/openwrt-sdxlemur-skel/usr/sbin/crond
Symbolic link
@@ -0,0 +1 @@
|
||||
../../bin/busybox
|
||||
BIN
opkg-feed/installer/openwrt-sdxlemur-skel/usr/sbin/dropbear
Executable file
BIN
opkg-feed/installer/openwrt-sdxlemur-skel/usr/sbin/dropbear
Executable file
Binary file not shown.
1
opkg-feed/installer/openwrt-sdxlemur-skel/usr/sbin/getsebool
Symbolic link
1
opkg-feed/installer/openwrt-sdxlemur-skel/usr/sbin/getsebool
Symbolic link
@@ -0,0 +1 @@
|
||||
../../bin/busybox
|
||||
1
opkg-feed/installer/openwrt-sdxlemur-skel/usr/sbin/load_policy
Symbolic link
1
opkg-feed/installer/openwrt-sdxlemur-skel/usr/sbin/load_policy
Symbolic link
@@ -0,0 +1 @@
|
||||
../../bin/busybox
|
||||
1
opkg-feed/installer/openwrt-sdxlemur-skel/usr/sbin/matchpathcon
Symbolic link
1
opkg-feed/installer/openwrt-sdxlemur-skel/usr/sbin/matchpathcon
Symbolic link
@@ -0,0 +1 @@
|
||||
../../bin/busybox
|
||||
1
opkg-feed/installer/openwrt-sdxlemur-skel/usr/sbin/ntpd
Symbolic link
1
opkg-feed/installer/openwrt-sdxlemur-skel/usr/sbin/ntpd
Symbolic link
@@ -0,0 +1 @@
|
||||
../../bin/busybox
|
||||
12
opkg-feed/installer/openwrt-sdxlemur-skel/usr/sbin/ntpd-hotplug
Executable file
12
opkg-feed/installer/openwrt-sdxlemur-skel/usr/sbin/ntpd-hotplug
Executable file
@@ -0,0 +1,12 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /usr/share/libubox/jshn.sh
|
||||
|
||||
addenv="$( env | while read line; do echo "json_add_string \"\" \"$line\";"; done )"
|
||||
json_init
|
||||
json_add_array env
|
||||
json_add_string "" "ACTION=$1"
|
||||
eval "$addenv"
|
||||
json_close_array env
|
||||
|
||||
ubus call hotplug.ntp call "$(json_dump)"
|
||||
58
opkg-feed/installer/openwrt-sdxlemur-skel/usr/sbin/opkg-key
Executable file
58
opkg-feed/installer/openwrt-sdxlemur-skel/usr/sbin/opkg-key
Executable file
@@ -0,0 +1,58 @@
|
||||
#!/bin/sh
|
||||
|
||||
OPKG_KEYS="${OPKG_KEYS:-/etc/opkg/keys}"
|
||||
|
||||
usage() {
|
||||
cat <<EOF
|
||||
Usage: $0 <command> <arguments...>
|
||||
Commands:
|
||||
add <file>: Add keyfile <file> to opkg trusted keys
|
||||
remove <file>: Remove keyfile matching <file> from opkg trusted keys
|
||||
verify <sigfile> <list>: Check list file <list> against signature file <sigfile>
|
||||
|
||||
EOF
|
||||
exit 1
|
||||
}
|
||||
|
||||
opkg_key_verify() {
|
||||
local sigfile="$1"
|
||||
local msgfile="$2"
|
||||
|
||||
(
|
||||
zcat "$msgfile" 2>/dev/null ||
|
||||
cat "$msgfile" 2>/dev/null
|
||||
) | usign -V -P "$OPKG_KEYS" -q -x "$sigfile" -m -
|
||||
}
|
||||
|
||||
opkg_key_add() {
|
||||
local key="$1"
|
||||
[ -n "$key" ] || usage
|
||||
[ -f "$key" ] || echo "Cannot open file $1"
|
||||
local fingerprint="$(usign -F -p "$key")"
|
||||
mkdir -p "$OPKG_KEYS"
|
||||
cp "$key" "$OPKG_KEYS/$fingerprint"
|
||||
}
|
||||
|
||||
opkg_key_remove() {
|
||||
local key="$1"
|
||||
[ -n "$key" ] || usage
|
||||
[ -f "$key" ] || echo "Cannot open file $1"
|
||||
local fingerprint="$(usign -F -p "$key")"
|
||||
rm -f "$OPKG_KEYS/$fingerprint"
|
||||
}
|
||||
|
||||
case "$1" in
|
||||
add)
|
||||
shift
|
||||
opkg_key_add "$@"
|
||||
;;
|
||||
remove)
|
||||
shift
|
||||
opkg_key_remove "$@"
|
||||
;;
|
||||
verify)
|
||||
shift
|
||||
opkg_key_verify "$@"
|
||||
;;
|
||||
*) usage ;;
|
||||
esac
|
||||
@@ -0,0 +1 @@
|
||||
../../bin/busybox
|
||||
1
opkg-feed/installer/openwrt-sdxlemur-skel/usr/sbin/sestatus
Symbolic link
1
opkg-feed/installer/openwrt-sdxlemur-skel/usr/sbin/sestatus
Symbolic link
@@ -0,0 +1 @@
|
||||
../../bin/busybox
|
||||
1
opkg-feed/installer/openwrt-sdxlemur-skel/usr/sbin/setsebool
Symbolic link
1
opkg-feed/installer/openwrt-sdxlemur-skel/usr/sbin/setsebool
Symbolic link
@@ -0,0 +1 @@
|
||||
../../bin/busybox
|
||||
Reference in New Issue
Block a user