From 7b554cc30faf492180056b5dc2b654cfa4625291 Mon Sep 17 00:00:00 2001 From: Nick Janetakis Date: Thu, 16 Oct 2014 10:26:24 -0400 Subject: [PATCH] Remove unused OS specific files --- tasks/debian.yml | 10 ---------- tasks/redhat.yml | 8 -------- 2 files changed, 18 deletions(-) delete mode 100644 tasks/debian.yml delete mode 100644 tasks/redhat.yml diff --git a/tasks/debian.yml b/tasks/debian.yml deleted file mode 100644 index c4cac5fff..000000000 --- a/tasks/debian.yml +++ /dev/null @@ -1,10 +0,0 @@ ---- - -- name: Debian/Ubuntu - Install httplib2 to use the uri module - apt: - pkg: 'python-httplib2' - state: 'latest' - update_cache: True - cache_valid_time: '{{ apt_cache_valid_time }}' - sudo: True - sudo_user: root diff --git a/tasks/redhat.yml b/tasks/redhat.yml deleted file mode 100644 index 6a2a35e14..000000000 --- a/tasks/redhat.yml +++ /dev/null @@ -1,8 +0,0 @@ ---- - -- name: RedHat/CentOS - Install httplib2 to use the uri module - yum: - pkg: 'python-httplib2' - state: 'latest' - sudo: True - sudo_user: root