---
# File: main.yml
# Type: task
# Part: PPTP

# Configure client / server
- name: PPTP | Load configuration defaults
  include_vars: "vars/pptp/{{ openvpn_config }}/main.yml"
  when: openvpn_config is defined
- name: PPTP | Configure client
  include: configure-client.yml
  when: openvpn_config is defined and openvpn_type == 'client'
- name: PPTP | Configure server
  include: configure-server.yml
  when: openvpn_config is defined and openvpn_type == 'server'
