ARG_NOT_SET = "argument not set"
 
+from warnings import warn
+warn('This script will be removed in a subsequent release',
+     DeprecationWarning)
+
 
 def main(arguments):
     """
 
         :param fip_name: the name of the floating IP to use for applying the
                          playbook (default - will take the first)
         """
+        from warnings import warn
+        warn('This method will be removed in a subsequent release',
+             DeprecationWarning)
+
         ansible_utils.apply_playbook(
             pb_file_loc, [self.get_floating_ip(fip_name=fip_name).ip],
             self.get_image_user(),
 
 from snaps.openstack.utils.nova_utils import RebootType
 from snaps.provisioning import ansible_utils
 
+from warnings import warn
+warn('This utility will be removed in a subsequent release',
+     DeprecationWarning)
+
 logger = logging.getLogger('lanuch_utils')
 DEFAULT_CREDS_KEY = 'admin'
 
 
 
 __author__ = 'spisarski'
 
+from warnings import warn
+warn('This utility will be removed in a subsequent release',
+     DeprecationWarning)
+
 logger = logging.getLogger('ansible_utils')