summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorViacheslav Hletenko <v.gletenko@vyos.io>2023-11-03 19:40:26 +0200
committerGitHub <noreply@github.com>2023-11-03 19:40:26 +0200
commitfd9e2c24e739fd327f860c45fa00241fd1acca7e (patch)
tree19862a2abf72ccccc40d246f097e12ec1e4d413a /src
parent1512d64c929fbb8de37a2d5b816e352e5942bfe0 (diff)
parent8f67048adff92ee140c000e7f1dc344c558e78a9 (diff)
downloadvyos-1x-fd9e2c24e739fd327f860c45fa00241fd1acca7e.tar.gz
vyos-1x-fd9e2c24e739fd327f860c45fa00241fd1acca7e.zip
Merge pull request #2429 from vyos/mergify/bp/sagitta/pr-2423
T4726: Remove accel-ppp RADIUS vendor validators (backport #2423)
Diffstat (limited to 'src')
-rwxr-xr-xsrc/validators/accel-radius-dictionary13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/validators/accel-radius-dictionary b/src/validators/accel-radius-dictionary
deleted file mode 100755
index 05287e770..000000000
--- a/src/validators/accel-radius-dictionary
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh
-
-DICT_PATH=/usr/share/accel-ppp/radius
-NAME=$1
-
-if [ -n "$NAME" -a -e $DICT_PATH/dictionary.$NAME ]; then
- exit 0
-else
- echo "$NAME is not a valid RADIUS dictionary name"
- echo "Please make sure that $DICT_PATH/dictionary.$NAME file exists"
- exit 1
-fi
-