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