summaryrefslogtreecommitdiff
path: root/src/op_mode
diff options
context:
space:
mode:
authorJohn Estabrook <jestabro@vyos.io>2024-11-20 18:32:02 -0600
committerJohn Estabrook <jestabro@vyos.io>2024-11-20 18:32:02 -0600
commiteceb410fd5e7f74b1e0655bc60ce5b7e34fb422f (patch)
treee744518db21449dea6b55101c4e2ad6c8e7c0eed /src/op_mode
parent1a291b44716ae268916a95971016fb0cf9584ba0 (diff)
downloadvyos-1x-eceb410fd5e7f74b1e0655bc60ce5b7e34fb422f.tar.gz
vyos-1x-eceb410fd5e7f74b1e0655bc60ce5b7e34fb422f.zip
op-mode: T6900: remove uninformative 'show configuration files'
The legacy node and behavior under 'show configuration files' is not useful as is; remove node and drop script to allow for a useful repurpose in the future.
Diffstat (limited to 'src/op_mode')
-rwxr-xr-xsrc/op_mode/show_configuration_files.sh10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/op_mode/show_configuration_files.sh b/src/op_mode/show_configuration_files.sh
deleted file mode 100755
index ad8e0747c..000000000
--- a/src/op_mode/show_configuration_files.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/bash
-
-# Wrapper script for the show configuration files command
-find ${vyatta_sysconfdir}/config/ \
- -type f \
- -not -name ".*" \
- -not -name "config.boot.*" \
- -printf "%f\t(%Tc)\t%T@\n" \
- | sort -r -k3 \
- | awk -F"\t" '{printf ("%-20s\t%s\n", $1,$2) ;}'