Merge branch 'master' of github.com:carlosfrias/apigee-opdk-setup-os-minimum
diff --git a/tasks/main.yml b/tasks/main.yml
index 37ab55e..ef8b7db 100644
--- a/tasks/main.yml
+++ b/tasks/main.yml
@@ -113,10 +113,12 @@
 - name: Disable Default IPV6
   become: yes
   shell: "sysctl -w net.ipv6.conf.default.disable_ipv6=1"
+  tags: ['ipv6']
 
 - name: Disable All IPV6
   become: yes
   shell: "sysctl -w net.ipv6.conf.all.disable_ipv6=1"
+  tags: ['ipv6']
 
 - name: Update for apigee installation environment
   become: yes
@@ -137,10 +139,12 @@
   get_url:
     url: https://bootstrap.pypa.io/get-pip.py
     dest: /tmp/get-pip.py
+  tags: ['pip-manager']
 
 - name: Install pip package manager
   become: yes
   shell: python /tmp/get-pip.py
+  tags: ['pip-manager']
 
 - name: Update python packages
   become: yes