def removeUnixLauncher(sudoFound=None): """only remove if it is found within /usr/local/bin""" environment.printWarn('removing athenacl unix launcher') dst = osTools.findAthBinPath() if os.path.exists(dst): osTools.rmSudo(dst, sudoFound) else: environment.printWarn('no athenacl unix launcher exists (%s)' % dst)
def reportUnixLauncher(): """only remove if it is found within /usr/local/bin""" dst = osTools.findAthBinPath() if os.path.exists(dst): environment.printWarn(['athenacl unix launcher exists:', dst]) f = open(dst) msg = f.read() f.close() environment.printWarn(['launcher contents:', msg.strip()]) else: environment.printWarn('no athenacl unix launcher exists (%s)' % dst)