Compare commits
2 Commits
v0.0.3h-em
...
v0.0.3l-aa
Author | SHA1 | Date | |
---|---|---|---|
3dac065600 | |||
acb722461c |
@ -137,14 +137,6 @@
|
|||||||
# url: "{{ depl_url }}/{{ depl_glpi_agentx86 }}"
|
# url: "{{ depl_url }}/{{ depl_glpi_agentx86 }}"
|
||||||
# dest: "/var/www/html/ficlients"
|
# dest: "/var/www/html/ficlients"
|
||||||
|
|
||||||
- name: Attribution des permissions sur repertoire /plugins/fusioninventory
|
|
||||||
file:
|
|
||||||
path: /var/www/html/glpi/plugins/fusioninventory
|
|
||||||
owner: www-data
|
|
||||||
group: www-data
|
|
||||||
recurse: yes
|
|
||||||
state: directory
|
|
||||||
|
|
||||||
- name: Copie du script dbdump
|
- name: Copie du script dbdump
|
||||||
copy:
|
copy:
|
||||||
src: dbdump
|
src: dbdump
|
||||||
|
@ -2,7 +2,22 @@
|
|||||||
apt:
|
apt:
|
||||||
name:
|
name:
|
||||||
- rsync
|
- rsync
|
||||||
- smbclient
|
- smbclient
|
||||||
- cifs-utils
|
- cifs-utils
|
||||||
state: present
|
state: present
|
||||||
|
|
||||||
|
- name: copie script backupsmb dans /usr/local/bin
|
||||||
|
copy:
|
||||||
|
src: backupsmb.sh
|
||||||
|
dest: /usr/local/bin
|
||||||
|
owner: root
|
||||||
|
group: root
|
||||||
|
mode: '0755'
|
||||||
|
|
||||||
|
- name: crontab backupsmb ( commentee par defaut )
|
||||||
|
cron:
|
||||||
|
name: backupsmb
|
||||||
|
disabled: true
|
||||||
|
minute: "0"
|
||||||
|
hour: "5"
|
||||||
|
job: "/usr/local/bin/backupsmb.sh"
|
||||||
|
15
s-itil.yml
15
s-itil.yml
@ -2,14 +2,13 @@
|
|||||||
- hosts: localhost
|
- hosts: localhost
|
||||||
connection: local
|
connection: local
|
||||||
|
|
||||||
#vars:
|
vars:
|
||||||
|
glpi_version: "10.0.6"
|
||||||
#glpi_version: "9.4.5"
|
glpi_dir: "/var/www/html/glpi"
|
||||||
#glpi_dir: "/var/www/html/glpi"
|
glpi_dbhost: "127.0.0.1"
|
||||||
#glpi_dbhost: "127.0.0.1"
|
glpi_dbname: "glpi"
|
||||||
#glpi_dbname: "glpi"
|
glpi_dbuser: "glpi"
|
||||||
#glpi_dbuser: "glpi"
|
glpi_dbpasswd: "glpi"
|
||||||
#glpi_dbpasswd: "glpi"
|
|
||||||
|
|
||||||
roles:
|
roles:
|
||||||
- base
|
- base
|
||||||
|
Reference in New Issue
Block a user