summaryrefslogtreecommitdiffstats
path: root/sanity/system_light/scripts/openssl/openssl.sh
blob: 52899450bf5602eae8e4e3bb7bcac2218a8e348d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

function main()
{
    $TOOLDIR/openssl_run.sh;
    if [ $? -eq 0 ]; then
        rm -rf openssl* && echo "removed openssl directories and files";
        return 0;
    else
        return 1;
    fi
}

main "$@";