summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorAn-Cheng Huang <ancheng@ancheng-vm.localdomain>2007-09-26 14:00:19 -0700
committerAn-Cheng Huang <ancheng@ancheng-vm.localdomain>2007-09-26 14:00:19 -0700
commit1d27be18b254c66d0a0fad7fbd02398f6990851d (patch)
tree542a6d5fe53c5a810078a66a13b5885c29640b2b /scripts
parentb0b6c1e13d7ccf9e790b5cc78c021f30d860c90b (diff)
downloadvyatta-op-1d27be18b254c66d0a0fad7fbd02398f6990851d.tar.gz
vyatta-op-1d27be18b254c66d0a0fad7fbd02398f6990851d.zip
moved "show version" template code into script.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/show_version12
1 files changed, 9 insertions, 3 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