diff --git a/pre/inst-depl b/pre/inst-depl index 7421be7..922eedb 100644 --- a/pre/inst-depl +++ b/pre/inst-depl @@ -9,16 +9,23 @@ apt update && apt upgrade apt install -y apache2 git STOREREP="/var/www/html/gsbstore" -GLPIREL=10.0.5 +GLPIREL=10.0.6 str="wget -nc https://github.com/glpi-project/glpi/releases/download/${GLPIREL}/glpi-${GLPIREL}.tgz" -FIREL=10.0.3+1.0 -str2="https://github.com/fusioninventory/fusioninventory-for-glpi/releases/download/glpi${FIREL}/fusioninventory-${FIREL}.tar.bz2" -FIAGREL=2.6 -str31="wget -nc https://github.com/fusioninventory/fusioninventory-agent/releases/download/${FIAGREL}/fusioninventory-agent_windows-x64_${FIAGREL}.exe" +#Fusion Inventory + +#FIREL=10.0.3+1.0 +#str2="https://github.com/fusioninventory/fusioninventory-for-glpi/releases/download/glpi${FIREL}/fusioninventory-${FIREL}.tar.bz2" + + +#GLPI Agent + +GLPIAGVER=1.4 +str31="wget -nc https://github.com/glpi-project/glpi-agent/releases/download/${GLPIAGVER}/GLPI-Agent-${GLPIAGVER}-x64.msi" + +str32="wget -nc https://github.com/glpi-project/glpi-agent/releases/download/${GLPIAGVER}/GLPI-Agent-${GLPIAGVER}-x86.msi" -str32="wget -nc https://github.com/fusioninventory/fusioninventory-agent/releases/download/${FIAGREL}/fusioninventory-agent_windows-x86_${FIAGREL}.exe" FOGREL=1.5.9 str4="wget -nc https://github.com/FOGProject/fogproject/archive/${FOGREL}.tar.gz -O fogproject-${FOGREL}.tar.gz" diff --git a/roles/itil/README.md b/roles/glpi/README.md similarity index 100% rename from roles/itil/README.md rename to roles/glpi/README.md diff --git a/roles/glpi/defaults/main.yml b/roles/glpi/defaults/main.yml new file mode 100644 index 0000000..43b3138 --- /dev/null +++ b/roles/glpi/defaults/main.yml @@ -0,0 +1,6 @@ +depl_url: "http://s-adm.gsb.adm/gsbstore" +#depl_glpi: "glpi-9.5.6.tgz" +depl_glpi: "glpi-10.0.6.tgz" +#depl_fusioninventory: "fusioninventory-9.5+3.0.tar.bz2" +depl_glpi_agentx64: "GLPI-Agent-1.4-x64.msi" +depl_glpi_agentx86: "GLPI-Agent-1.4-x86.msi" diff --git a/roles/itil/files/.my.cnf b/roles/glpi/files/.my.cnf similarity index 100% rename from roles/itil/files/.my.cnf rename to roles/glpi/files/.my.cnf diff --git a/roles/itil/files/dbdump b/roles/glpi/files/dbdump similarity index 100% rename from roles/itil/files/dbdump rename to roles/glpi/files/dbdump diff --git a/roles/itil/files/glpi.conf b/roles/glpi/files/glpi.conf similarity index 100% rename from roles/itil/files/glpi.conf rename to roles/glpi/files/glpi.conf diff --git a/roles/itil/handlers/main.yml b/roles/glpi/handlers/main.yml similarity index 100% rename from roles/itil/handlers/main.yml rename to roles/glpi/handlers/main.yml diff --git a/roles/itil/tasks/main.yml b/roles/glpi/tasks/main.yml similarity index 86% rename from roles/itil/tasks/main.yml rename to roles/glpi/tasks/main.yml index fe619d5..1e8d3c4 100644 --- a/roles/itil/tasks/main.yml +++ b/roles/glpi/tasks/main.yml @@ -105,12 +105,12 @@ # - name: copy .my.cnf file with root password credentials # copy: src=.my.cnf dest=/root/tools/ansible/.my.cnf owner=root mode=0600 - - name: Installation de Fusioninventory pour Linux - unarchive: - src: "{{ depl_url }}/{{ depl_fusioninventory }}" - #src: http://depl/gsbstore/fusioninventory-{{ fd_version }}.tar.bz2 - dest: /var/www/html/glpi/plugins - remote_src: yes +# - name: Installation de Fusioninventory pour Linux +# unarchive: +# src: "{{ depl_url }}/{{ depl_fusioninventory }}" +#src: http://depl/gsbstore/fusioninventory-{{ fd_version }}.tar.bz2 +# dest: /var/www/html/glpi/plugins +# remote_src: yes - name: Creation de ficlient file: @@ -127,15 +127,15 @@ group: www-data mode: 0775 - - name: Installation de FusionInventory windows x64 + - name: Installation de GLPI Agent windows x64 get_url: - url: "{{ depl_url }}/{{ depl_fusioninventory_agentx64 }}" + url: "{{ depl_url }}/{{ depl_glpi_agentx64 }}" dest: "/var/www/html/ficlients" - - name: Installation de FusionInventory windows x86 - get_url: - url: "{{ depl_url }}/{{ depl_fusioninventory_agentx86 }}" - dest: "/var/www/html/ficlients" +# - name: Installation de GLPI Agent windows x86 +# get_url: +# url: "{{ depl_url }}/{{ depl_glpi_agentx86 }}" +# dest: "/var/www/html/ficlients" - name: Attribution des permissions sur repertoire /plugins/fusioninventory file: diff --git a/roles/itil/templates/block.j2 b/roles/glpi/templates/block.j2 similarity index 100% rename from roles/itil/templates/block.j2 rename to roles/glpi/templates/block.j2 diff --git a/roles/itil/defaults/main.yml b/roles/itil/defaults/main.yml deleted file mode 100644 index 39b876e..0000000 --- a/roles/itil/defaults/main.yml +++ /dev/null @@ -1,6 +0,0 @@ -depl_url: "http://s-adm.gsb.adm/gsbstore" -#depl_glpi: "glpi-9.5.6.tgz" -depl_glpi: "glpi-10.0.5.tgz" -depl_fusioninventory: "fusioninventory-9.5+3.0.tar.bz2" -depl_fusioninventory_agentx64: "fusioninventory-agent_windows-x64_2.6.exe" -depl_fusioninventory_agentx86: "fusioninventory-agent_windows-x86_2.6.exe" diff --git a/s-itil.yml b/s-itil.yml index 5bab648..238fb64 100644 --- a/s-itil.yml +++ b/s-itil.yml @@ -2,23 +2,20 @@ - hosts: localhost connection: local - vars: + #vars: - glpi_version: "9.4.5" - fd_version: "9.4+1.1" - fd_version64: "x64_2.5.2" - fd_version86: "x86_2.5.2" - glpi_dir: "/var/www/html/glpi" - glpi_dbhost: "127.0.0.1" - glpi_dbname: "glpi" - glpi_dbuser: "glpi" - glpi_dbpasswd: "glpi" + #glpi_version: "9.4.5" + #glpi_dir: "/var/www/html/glpi" + #glpi_dbhost: "127.0.0.1" + #glpi_dbname: "glpi" + #glpi_dbuser: "glpi" + #glpi_dbpasswd: "glpi" roles: - base - goss - snmp-agent - - itil + - glpi - ssh-cli - syslog-cli - post