1
1
mirror of https://github.com/namibia/openvpn-install.git synced 2024-06-01 11:00:48 +00:00

Shellcheck: move excludes to action env

This commit is contained in:
Stanislas Lange 2020-08-03 17:50:40 +02:00
parent e52a54b92f
commit 1e3006c9ec
No known key found for this signature in database
GPG Key ID: 710D9597C7EAD8CF
2 changed files with 11 additions and 20 deletions

View File

@ -1,10 +1,4 @@
on: on: push
push:
branches:
- master
pull_request:
branches:
- master
name: Lint name: Lint

View File

@ -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