[packages] /etc/functions.sh => /lib/functions.sh
git-svn-id: svn://svn.openwrt.org/openwrt/packages@32061 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
1966c54229
commit
3f579aba93
@ -1,6 +1,6 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
. /etc/functions.sh
|
. /lib/functions.sh
|
||||||
|
|
||||||
ipaddr="$PPP_LOCAL"
|
ipaddr="$PPP_LOCAL"
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
if [ "$ACTION" = ifup ]; then
|
if [ "$ACTION" = ifup ]; then
|
||||||
. /etc/functions.sh
|
. /lib/functions.sh
|
||||||
|
|
||||||
include /lib/network
|
include /lib/network
|
||||||
scan_interfaces
|
scan_interfaces
|
||||||
|
@ -36,7 +36,7 @@ tayga_add_static_mappings() {
|
|||||||
local tmpconf="$1"
|
local tmpconf="$1"
|
||||||
|
|
||||||
(
|
(
|
||||||
. /etc/functions.sh
|
. /lib/functions.sh
|
||||||
config_load firewall
|
config_load firewall
|
||||||
|
|
||||||
tayga_map_rule_add() {
|
tayga_map_rule_add() {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
. /etc/functions.sh
|
. /lib/functions.sh
|
||||||
|
|
||||||
getoption() {
|
getoption() {
|
||||||
local cfg=$1
|
local cfg=$1
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
. /etc/functions.sh
|
. /lib/functions.sh
|
||||||
|
|
||||||
uci_revert_state dhcp6c state
|
uci_revert_state dhcp6c state
|
||||||
uci_set_state dhcp6c state "" dhcp6c_state
|
uci_set_state dhcp6c state "" dhcp6c_state
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
. /etc/functions.sh
|
. /lib/functions.sh
|
||||||
|
|
||||||
save_print_table_chain() {
|
save_print_table_chain() {
|
||||||
local table="$1"
|
local table="$1"
|
||||||
|
@ -4,7 +4,7 @@ bat_load_module()
|
|||||||
{
|
{
|
||||||
[ -d "/sys/module/batman_adv/" ] && return
|
[ -d "/sys/module/batman_adv/" ] && return
|
||||||
|
|
||||||
. /etc/functions.sh
|
. /lib/functions.sh
|
||||||
load_modules /etc/modules.d/*-crc16 /etc/modules.d/*-batman-adv*
|
load_modules /etc/modules.d/*-crc16 /etc/modules.d/*-batman-adv*
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# Copyright (C) 2011 OpenWrt.org
|
# Copyright (C) 2011 OpenWrt.org
|
||||||
|
|
||||||
. /etc/functions.sh
|
. /lib/functions.sh
|
||||||
. /lib/batman-adv/config.sh
|
. /lib/batman-adv/config.sh
|
||||||
|
|
||||||
start_mesh() {
|
start_mesh() {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
. /etc/functions.sh
|
. /lib/functions.sh
|
||||||
|
|
||||||
config_cb() {
|
config_cb() {
|
||||||
local cfg="$CONFIG_SECTION"
|
local cfg="$CONFIG_SECTION"
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
. /etc/functions.sh
|
. /lib/functions.sh
|
||||||
LOAD_STATE=1
|
LOAD_STATE=1
|
||||||
|
|
||||||
if [ "$ACTION" = "ifup" ]; then
|
if [ "$ACTION" = "ifup" ]; then
|
||||||
/etc/init.d/freeswitch enabled && {
|
/etc/init.d/freeswitch enabled && {
|
||||||
local not_all_up="$(sh -c '
|
local not_all_up="$(sh -c '
|
||||||
. /etc/functions.sh
|
. /lib/functions.sh
|
||||||
|
|
||||||
LOAD_STATE=1
|
LOAD_STATE=1
|
||||||
local if_is_down=0
|
local if_is_down=0
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
. /etc/functions.sh
|
. /lib/functions.sh
|
||||||
|
|
||||||
silencer() {
|
silencer() {
|
||||||
if [ -z "$debug" -o "$debug" == "0" ]; then
|
if [ -z "$debug" -o "$debug" == "0" ]; then
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# Copyright (C) 2006 OpenWrt.org
|
# Copyright (C) 2006 OpenWrt.org
|
||||||
|
|
||||||
. /etc/functions.sh
|
. /lib/functions.sh
|
||||||
|
|
||||||
unset SERVER
|
unset SERVER
|
||||||
unset PORT
|
unset PORT
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
. /etc/functions.sh
|
. /lib/functions.sh
|
||||||
. ../netifd-proto.sh
|
. ../netifd-proto.sh
|
||||||
init_proto "$@"
|
init_proto "$@"
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
# All config needs to be done in /etc/config/wshaper
|
# All config needs to be done in /etc/config/wshaper
|
||||||
|
|
||||||
. /etc/functions.sh
|
. /lib/functions.sh
|
||||||
config_load wshaper
|
config_load wshaper
|
||||||
for s in downlink uplink network nopriohostdst nopriohostsrc noprioportdst noprioportsrc; do
|
for s in downlink uplink network nopriohostdst nopriohostsrc noprioportdst noprioportsrc; do
|
||||||
config_get $s settings $s
|
config_get $s settings $s
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
. /etc/functions.sh
|
. /lib/functions.sh
|
||||||
|
|
||||||
if [ "$ACTION" = add ] && [ "$DEVICENAME" = event0 ]; then
|
if [ "$ACTION" = add ] && [ "$DEVICENAME" = event0 ]; then
|
||||||
( /etc/init.d/acpid/stop; sleep 3; /usr/sbin/acpid )&
|
( /etc/init.d/acpid/stop; sleep 3; /usr/sbin/acpid )&
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
. /etc/functions.sh
|
. /lib/functions.sh
|
||||||
. /lib/functions/bbstored.sh
|
. /lib/functions/bbstored.sh
|
||||||
|
|
||||||
bxbk_config_file=
|
bxbk_config_file=
|
||||||
|
Loading…
x
Reference in New Issue
Block a user