diff options
| author | Dan Callaghan <dcallagh@redhat.com> | 2016-04-19 14:24:37 +1000 |
|---|---|---|
| committer | Dan Callaghan <dcallagh@redhat.com> | 2016-04-19 14:24:37 +1000 |
| commit | 3f38bc99e103511ed4d12c79e2d05ba700519542 (patch) | |
| tree | 5df40ebb9715088b13142755c33882f9e9b072a5 /roles/beaker | |
| parent | f9c43464775c682f4f620fee8fb32c130aadd037 (diff) | |
| download | ansible-3f38bc99e103511ed4d12c79e2d05ba700519542.tar.gz ansible-3f38bc99e103511ed4d12c79e2d05ba700519542.tar.xz ansible-3f38bc99e103511ed4d12c79e2d05ba700519542.zip | |
beaker/labcontroller: use tftp.socket instead of xinetd
We are on RHEL7 so using xinetd is a bit of overkill, we can just use
tftp.socket instead.
Diffstat (limited to 'roles/beaker')
| -rw-r--r-- | roles/beaker/labcontroller/tasks/main.yml | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/roles/beaker/labcontroller/tasks/main.yml b/roles/beaker/labcontroller/tasks/main.yml index b5c352685..b52e095f4 100644 --- a/roles/beaker/labcontroller/tasks/main.yml +++ b/roles/beaker/labcontroller/tasks/main.yml @@ -23,16 +23,11 @@ tags: - beaker_lab_controller -- name: enable tftp - command: chkconfig tftp on - tags: - - beaker_lab_controller - - name: start required services service: name={{ item }} state=started enabled=yes with_items: - httpd - - xinetd + - tftp.socket - beaker-proxy - beaker-provision - beaker-watchdog |
