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

function main ()
{
    $TOOLDIR/build_glusterfs.sh;
    if [ $? -eq 0 ]; then
        rm -r $GLUSTERFS_DIR && echo "glusterfs directory removed";
        return 0;
    else
        return 1;
    fi
}

main "$@"