blob: ebc16929073ce0ffe035fcc883291e6e09ab4110 [file] [log] [blame]
Matteo Scandolo3896c472017-08-01 13:31:42 -07001
2# Copyright 2017-present Open Networking Foundation
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16
David K. Bainbridgee05b5562016-07-08 11:07:33 -070017---
Zack Williams843b4f22017-01-17 22:17:37 -070018# automation-integration/tasks/main.yml
David K. Bainbridgee05b5562016-07-08 11:07:33 -070019
Zack Williams843b4f22017-01-17 22:17:37 -070020- name: Template do-enlist-compute-node script to /etc/maas/ansible/do-enlist-compute-node
David K. Bainbridgee05b5562016-07-08 11:07:33 -070021 become: yes
22 template:
Zack Williams843b4f22017-01-17 22:17:37 -070023 src=do-enlist-compute-node.j2
David K. Bainbridgee05b5562016-07-08 11:07:33 -070024 dest=/etc/maas/ansible/do-enlist-compute-node
25 owner=maas
26 group=maas
27 mode=0755
28
Zack Williams843b4f22017-01-17 22:17:37 -070029- name: Have MAAS do-ansible script run do-enlist-compute-node script
David K. Bainbridgee05b5562016-07-08 11:07:33 -070030 become: yes
31 lineinfile:
32 dest=/etc/maas/ansible/do-ansible
33 line='/etc/maas/ansible/do-enlist-compute-node $ID $HOSTNAME || exit $?'
Zack Williams843b4f22017-01-17 22:17:37 -070034