diff options
author | dongwenjuan <dong.wenjuan@zte.com.cn> | 2018-01-10 09:42:05 +0800 |
---|---|---|
committer | dongwenjuan <dong.wenjuan@zte.com.cn> | 2018-01-10 09:42:05 +0800 |
commit | f106c5a12724c684d747cf7f309f0ccc8b86cc61 (patch) | |
tree | 43ec5c5aebd19c9ce0838033f5821d89c93f4194 /tests/lib/installer | |
parent | 9fd701278bf7d8c5b9451491bcb1a92580adc780 (diff) |
remove useless bash code
Change-Id: I530ef7fcdc4f9539517c5a2718e596f77de772a6
Signed-off-by: dongwenjuan <dong.wenjuan@zte.com.cn>
Diffstat (limited to 'tests/lib/installer')
-rw-r--r-- | tests/lib/installer | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/tests/lib/installer b/tests/lib/installer deleted file mode 100644 index 13953d28..00000000 --- a/tests/lib/installer +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/bash - -INSTALLER_TYPE=${INSTALLER_TYPE:-local} -ssh_opts="-o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no" - -function is_installer_supported { - local installer="$1" - [[ -f $TOP_DIR/lib/installers/$installer ]] -} - -function is_installer { - local installer="$1" - [[ $installer == $INSTALLER_TYPE ]] -} - -function validate_installer_lib { - local xtrace - xtrace=$(set +o | grep xtrace) - set +o xtrace - for p in COMPUTE_USER ssh_opts_cpu - do - die_if_not_set $LINENO $p \ - "Parameter $p for $INSTALLER_TYPE is missing." - done - for f in setup_installer get_compute_ip_from_hostname cleanup_installer - do - die_if_not_defined $LINENO $f \ - "Mandatory function ${f}() for $INSTALLER_TYPE is missing." - done - $xtrace -} - -if ! is_installer_supported $INSTALLER_TYPE; then - die $LINENO "INSTALLER_TYPE=$INSTALLER_TYPE is not supported." -fi - -source $TOP_DIR/lib/installers/$INSTALLER_TYPE - -validate_installer_lib |