diff --git a/src/amphora.py b/src/amphora.py index d939953..418c048 100644 --- a/src/amphora.py +++ b/src/amphora.py @@ -108,6 +108,10 @@ def rotate(): pass +def orphan(): + pass + + # Connect to the OpenStack environment cloud = openstack.connect(cloud=CONF.cloud) @@ -118,3 +122,7 @@ def rotate(): # Rotate all amphorae if CONF.rotate: rotate() + +# Identify orphan amphorae +if CONF.orphan: + orphan()