Skip to content

Installation: error in downloading Libreoffice #2

Description

@omshinde

I was facing some issues while installation of MapMint. Now, it has been installed successfully. The compiled points are as follows:

  1. In my KDE, postgresql-9.5 was installed, but the destination address was searching for postgresql-9.3 by using postgresql-{{pgvers}}. The variable {{pgvers}} was declared as 9.3. So, after changing pgvers to 9.5 in /mm-install/mapmint-setup/ubuntu/dependencies/vars/main.yml , the issue was solved. This is already solved in the previous conversations.

  2. While downloading Libreoffice, the code is searching for
    http://download.documentfoundation.org/libreoffice/stable/5.2.6/deb/x86_64/LibreOffice_5.2.6_Linux_x86_64_deb.tar.gz instead of
    http://download.documentfoundation.org/libreoffice/stable/5.2.6/deb/x86_64/LibreOffice_5.2.6_Linux_x86-64_deb.tar.gz
    Note the x86_64 and x86-64 in both links

    This url is defined in debian/mapmint/tasks/main.yml as:

    name: Download LibreOffice get_url:url=http://download.documentfoundation.org/libreoffice/stable/{{lo_version}}/deb/{{larch}}/Libre
    Office_{{lo_version}}_Linux_{{larch}}_deb.tar.gz dest={{srcdir}}
    

I solved this issue by changing:

  • The url to:

    name: Download LibreOffice get_url:url=http://download.documentfoundation.org/libreoffice/stable/{{lo_version}}/deb/{{arch}}/Libre
    Office_{{lo_version}}_Linux_{{larch}}_deb.tar.gz dest={{srcdir}}
    
  • And the value of larch to x86-64 from x86_64 in ubuntu/dependencies/vars/main.yml .

Also, just for sharing the information, the final installation can be started in verbose view by executing:

 ansible-playbook -s server.yml -u root -vvv

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions