You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
328 B
13 lines
328 B
#! /bin/bash
|
|
|
|
script_dir=`dirname $0`
|
|
dist_name=`$script_dir/printLinuxDistName`
|
|
|
|
case $dist_name in
|
|
*sles* ) echo `$script_dir/testLinuxDistVersion ge 12`;;
|
|
*opensuse* ) echo `$script_dir/testLinuxDistVersion ge 13`;;
|
|
*suse* ) echo `$script_dir/testLinuxDistVersion ge 13`;;
|
|
* ) echo 0;;
|
|
esac
|
|
|