summaryrefslogtreecommitdiffstats
path: root/nova/utils.py
diff options
context:
space:
mode:
authorDan Prince <dprince@redhat.com>2012-06-25 23:59:10 -0400
committerDan Prince <dprince@redhat.com>2012-06-25 23:59:10 -0400
commit472e1535a615e9933d0b3df3853300348019e560 (patch)
treeac33d6a2121bb248300d2e99b3044918551eb464 /nova/utils.py
parentca1f1d39b8ee85f55d5b656f7db946f855be5cb2 (diff)
Removes utils.fetch_file (no longer used).
Change-Id: I75828a1e40f1daa3a15221f1ab8de484e6bb03ef
Diffstat (limited to 'nova/utils.py')
-rw-r--r--nova/utils.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/nova/utils.py b/nova/utils.py
index 3a74e1b98..166e0b4cb 100644
--- a/nova/utils.py
+++ b/nova/utils.py
@@ -114,11 +114,6 @@ def vpn_ping(address, port, timeout=0.05, session_id=None):
return server_sess
-def fetchfile(url, target):
- LOG.debug(_('Fetching %s') % url)
- execute('curl', '--fail', url, '-o', target)
-
-
def execute(*cmd, **kwargs):
"""Helper method to execute command with optional retry.