46
defaults/main.yml
Normal file
46
defaults/main.yml
Normal file
@ -0,0 +1,46 @@
|
||||
---
|
||||
# directory_logrotate_config: /etc/logrotate.d
|
||||
install_glpi: 'true'
|
||||
glpi_installed: false
|
||||
# logfile_max_size: 10 # must be specified in MB (Mega Bytes)
|
||||
# logrotate_configuration: [] # Global var for usage within group/host vars
|
||||
|
||||
docker_image_name_glpi: nofusscomputing/docker-glpi
|
||||
docker_image_tag_glpi: dev
|
||||
|
||||
docker_container_name_glpi: glpi
|
||||
# mysql_unix_socket: /run/mysql/mariadb/mysqld.sock
|
||||
mysql_unix_socket: /var/lib/docker/volumes/socket-mysql/_data/mysqld.sock
|
||||
mysql_login_user: root
|
||||
mysql_login_password: admin
|
||||
|
||||
glpi_plugins:
|
||||
- filename: fail2ban_1.0.2-1.upstream1_all.deb
|
||||
#url: https://github.com/pluginsGLPI/formcreator/releases/download/2.13.6/glpi-formcreator-2.13.6.tar.bz2
|
||||
url: https://api.github.com/repos/pluginsGLPI/formcreator/releases/tags/2.13.6
|
||||
|
||||
- filename: glpi-glpiinventory-1.2.3.tar.bz2
|
||||
#url: https://github.com/glpi-project/glpi-inventory-plugin/releases/download/1.2.3/glpi-glpiinventory-1.2.3.tar.bz2
|
||||
url: https://api.github.com/repos/glpi-project/glpi-inventory-plugin/releases/tags/1.2.3
|
||||
|
||||
# - filename: glpi-actualtime-2.1.0.tar.tgz
|
||||
# url: https://api.github.com/repos/ticgal/actualtime/releases/tags/2.1.0/glpi-actualtime-2.1.0.tar.tgz
|
||||
|
||||
|
||||
mysql_database_glpi: glpi
|
||||
|
||||
# Configuration Example
|
||||
# logrotate:
|
||||
# - name: docker # Mandatory, used as logrotate difinition file name
|
||||
# path: '/var/lib/docker/containers/*/*.log' # Mandatory, path to the logfile
|
||||
# su: ingress ingress # Optional,, string user and group for log permissions
|
||||
# interval: daily # optional example daily, weekly, monthly default=daily
|
||||
# keep: # Optional, int, How many logs to keep default=7
|
||||
# size: 10 # Optional, max size of logfile in Mega Bytes. DONT specify unit. default={{}}
|
||||
# compress: # Optional, bool default=true
|
||||
# delaycompress: # Optional, bool, delay logfile compression default=true
|
||||
# postrotate: 'docker restart $(docker ps -q)' # Optional, Command to run post rotate default=not defined
|
||||
# create: # Optional, default=not defined
|
||||
# mode: 640 # Mandatory, filemode
|
||||
# owner: root # Mandatory, logfile owner
|
||||
# group: adm # Mandatory, logfile group owner
|
Reference in New Issue
Block a user