Shellcheck: move excludes to action env
This commit is contained in:
parent
e52a54b92f
commit
1e3006c9ec
8
.github/workflows/lint.yml
vendored
8
.github/workflows/lint.yml
vendored
@ -1,10 +1,4 @@
|
|||||||
on:
|
on: push
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
pull_request:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
|
|
||||||
name: Lint
|
name: Lint
|
||||||
|
|
||||||
|
@ -18,7 +18,6 @@ function tunAvailable() {
|
|||||||
function checkOS() {
|
function checkOS() {
|
||||||
if [[ -e /etc/debian_version ]]; then
|
if [[ -e /etc/debian_version ]]; then
|
||||||
OS="debian"
|
OS="debian"
|
||||||
# shellcheck disable=SC1091
|
|
||||||
source /etc/os-release
|
source /etc/os-release
|
||||||
|
|
||||||
if [[ $ID == "debian" || $ID == "raspbian" ]]; then
|
if [[ $ID == "debian" || $ID == "raspbian" ]]; then
|
||||||
@ -51,7 +50,6 @@ function checkOS() {
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
elif [[ -e /etc/system-release ]]; then
|
elif [[ -e /etc/system-release ]]; then
|
||||||
# shellcheck disable=SC1091
|
|
||||||
source /etc/os-release
|
source /etc/os-release
|
||||||
if [[ $ID == "fedora" ]]; then
|
if [[ $ID == "fedora" ]]; then
|
||||||
OS="fedora"
|
OS="fedora"
|
||||||
@ -1206,7 +1204,6 @@ function removeUnbound() {
|
|||||||
|
|
||||||
function removeOpenVPN() {
|
function removeOpenVPN() {
|
||||||
echo ""
|
echo ""
|
||||||
# shellcheck disable=SC2034
|
|
||||||
read -rp "Do you really want to remove OpenVPN? [y/n]: " -e -i n REMOVE
|
read -rp "Do you really want to remove OpenVPN? [y/n]: " -e -i n REMOVE
|
||||||
if [[ $REMOVE == 'y' ]]; then
|
if [[ $REMOVE == 'y' ]]; then
|
||||||
# Get OpenVPN port from the configuration
|
# Get OpenVPN port from the configuration
|
||||||
|
Loading…
x
Reference in New Issue
Block a user