aboutsummaryrefslogtreecommitdiffstats
path: root/roles/gathio/vars/main.yml
blob: 68f584b9db9739b80d459a7d86118139a3305907 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
gathio_packages:
  - mongodb-org
  - nodejs
  - git

gathio_git_repo: https://github.com/lowercasename/gathio
gathio_home: /var/lib/gathio
gathio_install_dir: '{{ gathio_home }}/gathio'

gathio_mongodb_selinux_policy_te: |
  require {
    type sysctl_fs_t;
    type var_lib_nfs_t;
    type mongod_t;
    class dir search;
  }

  #============= mongod_t ==============
  allow mongod_t sysctl_fs_t:dir search;
  allow mongod_t var_lib_nfs_t:dir search;