diff options
author | John Estabrook <jestabro@vyos.io> | 2024-11-20 18:32:02 -0600 |
---|---|---|
committer | John Estabrook <jestabro@vyos.io> | 2024-11-20 18:32:02 -0600 |
commit | eceb410fd5e7f74b1e0655bc60ce5b7e34fb422f (patch) | |
tree | e744518db21449dea6b55101c4e2ad6c8e7c0eed /src/op_mode | |
parent | 1a291b44716ae268916a95971016fb0cf9584ba0 (diff) | |
download | vyos-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-x | src/op_mode/show_configuration_files.sh | 10 |
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) ;}' |