This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Copyright (C) 2020 Jo-Philipp Wich <[email protected]> | |
# | |
# This is free software, licensed under the GNU General Public License v2. | |
# See /LICENSE for more information. | |
# | |
include $(TOPDIR)/rules.mk | |
PKG_NAME:=utpl |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# This is /lib/network/dsaconfig.sh | |
. /lib/functions/network.sh | |
switch_names="" | |
clear_port_vlans() { | |
local port=$1 | |
local self=$2 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"luci-proto-modemmanager": { | |
"description": "Grant access to mmcli", | |
"read": { | |
"cgi-io": [ "exec" ], | |
"file": { | |
"/usr/bin/mmcli -L": [ "exec" ], | |
"/usr/bin/mmcli -m [0-9]": [ "exec" ] | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/libs/luci-lib-httpclient/luasrc/httpclient.lua b/libs/luci-lib-httpclient/luasrc/httpclient.lua | |
index 79ce41294..7a335a016 100644 | |
--- a/libs/luci-lib-httpclient/luasrc/httpclient.lua | |
+++ b/libs/luci-lib-httpclient/luasrc/httpclient.lua | |
@@ -105,13 +105,18 @@ function parse_url(uri) | |
rest = tmp | |
end | |
- url.host, tmp = rest:match("^%[([0-9a-fA-F:]+)%](.*)$") | |
+ url.host, tmp = rest:match("^%[(.+)%](.*)$") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/modules/luci-base/htdocs/luci-static/resources/luci.js b/modules/luci-base/htdocs/luci-static/resources/luci.js | |
index 7c1831376..3433da396 100644 | |
--- a/modules/luci-base/htdocs/luci-static/resources/luci.js | |
+++ b/modules/luci-base/htdocs/luci-static/resources/luci.js | |
@@ -67,7 +67,7 @@ | |
* It provides simple means to create subclasses of given classes and | |
* implements prototypal inheritance. | |
*/ | |
- var superContext = null, Class = Object.assign(function() {}, { | |
+ var superContext = {}, Class = Object.assign(function() {}, { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
. /lib/functions.sh | |
. ../netifd-proto.sh | |
init_proto "$@" | |
append_args() { | |
while [ $# -gt 0 ]; do | |
append cmdline "'${1//\'/\'\\\'\'}'" | |
shift | |
done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/net/openconnect/files/openconnect.sh b/net/openconnect/files/openconnect.sh | |
index 15bd3b5a5..1f0c7aeed 100755 | |
--- a/net/openconnect/files/openconnect.sh | |
+++ b/net/openconnect/files/openconnect.sh | |
@@ -3,6 +3,13 @@ | |
. ../netifd-proto.sh | |
init_proto "$@" | |
+append_args() { | |
+ while [ $# -gt 0 ]; do |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v1 | |
kind: Namespace | |
metadata: | |
name: local-lvm-storage | |
--- | |
apiVersion: v1 | |
kind: ServiceAccount | |
metadata: | |
name: local-lvm-provisioner-service-account | |
namespace: local-lvm-storage |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use locale; | |
use POSIX qw(mktime strftime setlocale LC_COLLATE); | |
setlocale(LC_COLLATE, "en_US.UTF-8"); |