Skip to content

Commit

Permalink
Merge pull request #107 from bird-house/add-cleantempdir-cfg
Browse files Browse the repository at this point in the history
added cleantempdir option
  • Loading branch information
cehbrecht authored Sep 9, 2020
2 parents 4c4e8ec + 1dc2177 commit bbba7d2
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 0 deletions.
12 changes: 12 additions & 0 deletions etc/sample-emu-debug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
db_install_postgresql: true
db_install_sqlite: false
# Configuration for Emu WPS
wps_services:
- name: emu
# repo: https://github.com/bird-house/emu.git
# version: master
hostname: localhost
port: 5000
log_level: DEBUG
cleantempdir: false
2 changes: 2 additions & 0 deletions etc/sample-vagrant.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,5 @@ wps_services:
hostname: "{{ server_name }}"
fs_hostname: "{{ server_name }}"
port: 5000
log_level: DEBUG
cleantempdir: false
1 change: 1 addition & 0 deletions etc/vagrant-cluster-with-rook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@ wps_services:
maxprocesses: 10000
parallelprocesses: 1000
log_level: DEBUG
cleantempdir: false
1 change: 1 addition & 0 deletions group_vars/all
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ wps_services: []
# parallelprocesses: 4
# mode: default
# log_level: INFO
# cleantempdir: true
# database: "{{ wps_database }}"
# # outputurl: http://somewhere.earth/outputs # optional
# extra_config: |
Expand Down
1 change: 1 addition & 0 deletions roles/pywps/templates/pywps.cfg.j2
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ parallelprocesses = {{ item.parallelprocesses | default('4') }}
outputpath= {{ wps_basedir }}/outputs/{{ item.name }}
workdir={{ wps_basedir }}/tmp/{{ item.name }}
sethomedir={{ item.sethomedir | default('false') }}
cleantempdir={{ item.cleantempdir | default('true') }}

[processing]
mode={{ item.mode | default('default')}}
Expand Down

0 comments on commit bbba7d2

Please sign in to comment.