ogclone-engine/ogclient/functions/ogGetCacheSpace

14 lines
252 B
Python

#!/usr/bin/python3
import sys
import argparse
from SystemLib import ogHelp
from CacheLib import ogGetCacheSpace
ret = ogGetCacheSpace()
if ret is not None:
if ret == True: sys.exit (0)
elif ret == False: sys.exit (1)
else: print (ret)