0a2092a087
This fixes the tftp service name on CentOS and makes sure that the service is running on boot. It also makes sure that the tftp_root is setup correctly for the default configuration on CentOS. Change-Id: I56944ea905b5ea908cf1e93d5ae1325e68788562
69 lines
1.8 KiB
YAML
69 lines
1.8 KiB
YAML
---
|
|
# Copyright 2015, Rackspace US, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
- name: Copy in sample dhcpd.conf file
|
|
copy:
|
|
src: "dhcpd.conf"
|
|
dest: "/etc/dhcp/"
|
|
when: ironic_standalone
|
|
notify:
|
|
- Restart isc-dhcp-server
|
|
|
|
- name: Create tftpboot path
|
|
file:
|
|
path: "{{ ironic_tftpd_root }}"
|
|
state: directory
|
|
owner: "{{ ironic_system_user_name }}"
|
|
group: "{{ ironic_system_group_name }}"
|
|
mode: "0755"
|
|
|
|
- name: Copy in tftpd-hpa config file
|
|
template:
|
|
src: "tftpd-hpa.j2"
|
|
dest: "/etc/default/tftpd-hpa"
|
|
when:
|
|
- ansible_os_family == 'Debian'
|
|
notify:
|
|
- Restart tftpd
|
|
|
|
- name: Copy in tftpd map file
|
|
template:
|
|
src: "map-file"
|
|
dest: "{{ ironic_tftpd_root }}/map-file"
|
|
notify:
|
|
- Restart tftpd
|
|
|
|
- name: Copy library modules into tftpboot
|
|
copy:
|
|
src: "{{ item }}"
|
|
dest: "{{ ironic_tftpd_root }}/"
|
|
remote_src: True
|
|
with_items: "{{ ironic_library_modules_paths }}"
|
|
|
|
# Add 'yum' in condition if tftp socket required to be started for centos.
|
|
- name: Start up tftp socket
|
|
when:
|
|
- "ansible_pkg_mgr in ['zypper']"
|
|
systemd:
|
|
daemon_reload: yes
|
|
name: "{{ ironic_tftpd_service_name }}.socket"
|
|
state: started
|
|
enabled: true
|
|
|
|
- name: Start up tftp
|
|
service:
|
|
name: "{{ ironic_tftpd_service_name }}"
|
|
state: started
|
|
enabled: true |