diff options
| author | Kevin Fenzi <kevin@scrye.com> | 2014-07-28 20:10:12 +0000 |
|---|---|---|
| committer | Kevin Fenzi <kevin@scrye.com> | 2014-07-28 20:10:12 +0000 |
| commit | 75e072a7a5dea5d77a1d1c3f435bbed46ee431a8 (patch) | |
| tree | 48728925e2c2c5085230b2a1362973049b215990 /roles/fas_client/tasks | |
| parent | a6f4ff7fa0677b41cd42607025f4dafd00b8b4d4 (diff) | |
| download | ansible-75e072a7a5dea5d77a1d1c3f435bbed46ee431a8.tar.gz ansible-75e072a7a5dea5d77a1d1c3f435bbed46ee431a8.tar.xz ansible-75e072a7a5dea5d77a1d1c3f435bbed46ee431a8.zip | |
Move fasClient runs to every 30min instead of every 10min.
Diffstat (limited to 'roles/fas_client/tasks')
| -rw-r--r-- | roles/fas_client/tasks/main.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/roles/fas_client/tasks/main.yml b/roles/fas_client/tasks/main.yml index 32917e18b..1e41b77ff 100644 --- a/roles/fas_client/tasks/main.yml +++ b/roles/fas_client/tasks/main.yml @@ -15,12 +15,14 @@ - cronie tags: - packages + - fas_client - name: install nss_db on rhel hosts only yum: state=installed name=nss_db when: is_rhel is defined and ansible_distribution_major_version == '6' tags: - packages + - fas_client # # setup /etc/nsswitch.conf to use nssdb @@ -29,6 +31,7 @@ copy: src=nsswitch.conf dest=/etc/nsswitch.conf owner=root mode=644 tags: - config + - fas_client # # fasClients needs a valid /etc/fas.conf. @@ -52,6 +55,7 @@ - ../templates/fas.conf.j2 tags: - config + - fas_client notify: - run fasclient @@ -68,8 +72,10 @@ copy: src=fas-client.cron dest=/etc/cron.d/fas-client owner=root mode=644 tags: - config + - fas_client - name: run fas_client only if we just installed command: fasClient -if creates=/var/db/shadow.db tags: - config + - fas_client |
