Merge pull request #45 from Expand-sys/main

updated the variables fle for ansible
This commit is contained in:
William 2022-12-13 02:43:37 -08:00 committed by GitHub
commit e20ac4cebc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View file

@ -54,7 +54,7 @@
ansible.builtin.command:
chdir: '{{BUILD_DIR}}/CCash/build'
cmd: |
cmake -DDROGON_CONFIG_LOC="{{ BUILD_DIR }}/CCash/config/config.json" -DUSER_SAVE_LOC="{{ BUILD_DIR }}/CCash/config/users.dat" ..
cmake -DDROGON_CONFIG_LOC="{{ BUILD_DIR }}/CCash/config/config.json" -DUSER_SAVE_LOC="{{ BUILD_DIR }}/CCash/config/users.dat" -DAPI_VERSION="{{ API_VERSION }}" -DMIN_API_SUPPORT="{{ MIN_API_SUPPORT }}" ..
- name: make CCash
community.general.make:

View file

@ -1,4 +1,6 @@
---
BUILD_DIR: '/root'
ADMIN_A: "admin"
SAVE_FREQ: "2"
SAVE_FREQ: "2"
API_VERSION: "2"
MIN_API_SUPPORT: "1"