aboutsummaryrefslogtreecommitdiffstats
path: root/qtip.py
diff options
context:
space:
mode:
authorMofassir Arif <Mofassir_arif@dellteam.com>2015-12-17 03:48:42 -0800
committerMofassir Arif <Mofassir_arif@dellteam.com>2015-12-17 03:48:42 -0800
commit390c1e3ca7f751fdfe6c7e9634d0d95ae6ba114f (patch)
treee441b0e2e83ac7da9830d23ce32756501232fbd1 /qtip.py
parent6737007d817e62567cbcdaca598f4b1ffa915463 (diff)
Script to modify key file permissions
I have added a script to change the file permissions of the key files to 600 so that they can be used by the ssh agent The duration of the sshtest has also been reduced to allow the Jenkins Job to run/fail in a reasonable amount of time Change-Id: I5446896619dfba3f3efb600b64628343d6378164 Signed-off-by: Mofassir Arif <Mofassir_arif@dellteam.com>
Diffstat (limited to 'qtip.py')
-rw-r--r--qtip.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/qtip.py b/qtip.py
index 2c488e60..01c49946 100644
--- a/qtip.py
+++ b/qtip.py
@@ -10,8 +10,10 @@
from func.cli import cli
+import os
def main():
+ os.system('./data/file_permission.sh')
Objcli = cli()
if __name__ == "__main__":