robertdebock / ansible-role-tomcat

Install and configure tomcat on your system.
https://robertdebock.nl/
Apache License 2.0
46 stars 57 forks source link

tomcat mirror 403 #11

Closed MatthiasHertel closed 5 years ago

MatthiasHertel commented 5 years ago

Is your feature request related to a problem? Please describe. i got a 403 on tomcat_mirror see below:

image

the tomcat_mirror is generated from many vars e.g. tomcat_version see below:

- name: install tomcat instance
  unarchive:
    src: "{{ tomcat_mirror }}/{{ tomcat_archives[instance.version | default(tomcat_version)]['url_path'] }}/{{ tomcat_archives[instance.version | default(tomcat_version)]['targz'] }}"
    dest: "{{ tomcat_directory }}/{{ instance.name }}"
    owner: "{{ instance.user | default(tomcat_user) }}"
    group: "{{ instance.group | default(tomcat_group) }}"
    remote_src: yes
    extra_opts: "--strip-components=1"
    creates: "{{ tomcat_directory }}/{{ instance.name }}/bin"
  register: install_tomcat
  until: install_tomcat is succeeded
  retries: 3

Describe the solution you'd like

i want to set the tomcat_mirror to official mirror not from uni delft

Describe alternatives you've considered see above

Additional context no

robertdebock commented 5 years ago

I'll have a look, think a newer version is out. Thanks for the feedback.

robertdebock commented 5 years ago

I'll reopen until testing was successful.

The mirror closed or so, switched mirror.

MatthiasHertel commented 5 years ago

first of all thx for the quick fix! ok can u release it? so i can pull it into my deployment-pipeline with ansible-galaxy install

robertdebock commented 5 years ago

I'm about to release it, making this release (4.0.0) available on Galaxy in an hour or so.

robertdebock commented 5 years ago

Release is done, build worked, closing issue. Thanks @MatthiasHertel!