Statistics
| Branch: | Revision:

root / verify @ 47c86659

History | View | Annotate | Download (275 Bytes)

1
#!/bin/bash
2

    
3
#
4
# Copyright (C) 2011 Greek Research and Technology Network
5
#
6

    
7
# All the OS parameters which reside in the parameters.list file
8
# should be checked and verified here
9

    
10
if [ "$OSP_IMG_PASSWD" = "xxx" ]; then
11
    echo "Invalid password" 1>&2
12
    exit 1
13
fi
14

    
15
exit 0