diff options
-rwxr-xr-x | scripts/show_version | 12 | ||||
-rw-r--r-- | templates/show/version/node.def | 8 |
2 files changed, 10 insertions, 10 deletions
diff --git a/scripts/show_version b/scripts/show_version index dde4f15..ffb2da0 100755 --- a/scripts/show_version +++ b/scripts/show_version @@ -21,9 +21,15 @@ # # **** End License **** -cat <<EOF -FIXME! add vyatta show version -EOF +# TODO add other version info + +for cl in /usr/share/doc/vyatta-*/changelog.gz ; do + dir=${cl%/*} ; + pkg=${dir##*/} ; + printf " %-20s " ${pkg} ; + test ${#pkg} -lt 20 || echo -ne \\n\\t ; + gunzip -c $cl | tail -n1 ; +done ### Local Variables: ### mode: shell-script diff --git a/templates/show/version/node.def b/templates/show/version/node.def index 1a1adb0..9e119d4 100644 --- a/templates/show/version/node.def +++ b/templates/show/version/node.def @@ -1,8 +1,2 @@ help: "Show Vyatta version information" -run: for cl in /usr/share/doc/vyatta-*/changelog.gz ; do - dir=${cl%/*} ; - pkg=${dir##*/} ; - printf " %-20s " ${pkg} ; - test ${#pkg} -lt 20 || echo -ne \\n\\t ; - gunzip -c $cl | tail -n1 ; - done +run: ${vyatta_bindir}/show_version |