Commit 83c1e0a1 authored by Cristiano Urban's avatar Cristiano Urban
Browse files

Merge branch 'testing'

parents 55c53e20 1b363917
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -81,7 +81,7 @@ DESCRIPTION
                    sys.exit("\nFATAL: Malformed response, store confirmation expected.\n")
                elif confirmResponse["responseType"] == "STORE_RUN":
                    jobID = confirmResponse["jobID"]
                    print(f"\nJobID = {jobID}")
                    print(f"\nJobID: {jobID}")
                    print("Store process started successfully!\n")
                else:
                    sys.exit("FATAL: Unknown response type.\n")
+2 −0
Original line number Diff line number Diff line
@@ -34,6 +34,8 @@ class StorePreprocessor(object):
        self.username = username
        self.path = "/home/" + username + "/store"
        for folder, subfolders, files in os.walk(self.path):
            os.chown(folder, 0, 0)
            os.chmod(folder, 0o555)
            for s in subfolders:
                os.chown(os.path.join(folder, s), 0, 0)
                os.chmod(os.path.join(folder, s), 0o555)