From 803daf845ffd70892ff889f88709421e9d72007f Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Tue, 29 Mar 2016 18:39:24 +0300 Subject: hostname.yml: Helper playbook to set real hostname on (almost) all servers. This is a separate utility playbook intended for occasional (possibly, one-time) tweaking of hostnames on old servers which lack it being set consistently. Any newer servers will be set up properly by ITS. Change-Id: Id58bbb33d6ff425e65af6bcde8b07e50de160e72 Reviewed-on: https://review.linaro.org/11094 Reviewed-by: Paul Sokolovsky --- hostname.yml | 11 +++++++++++ hosts | 14 ++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 hostname.yml diff --git a/hostname.yml b/hostname.yml new file mode 100644 index 00000000..b58a868d --- /dev/null +++ b/hostname.yml @@ -0,0 +1,11 @@ +--- +# This is a utility playbook for occasional fixing of hostnames on old +# servers. It is not intended to be run all the time, just on occasions. +# For new servers, ITS will make needed setup (and this playbook will +# become deprecated). +- hosts: all + gather_facts: no + become: yes + tasks: + - name: Set hostname + hostname: name={{inventory_hostname}} diff --git a/hosts b/hosts index 4eb5c080..7784693c 100644 --- a/hosts +++ b/hosts @@ -19,3 +19,17 @@ builds.96boards.org [publishing-apache22] snapshots.linaro.org releases-us.linaro.org + +[git] +git-us.linaro.org +git-ap.linaro.org +git-ie.linaro.org +android-git-us.linaro.org +android-git-ap.linaro.org +android-git-ie.linaro.org +dev-private-git.linaro.org +projectara-git.linaro.org + +[patches] +patches.opendataplane.org +patches.linaro.org -- cgit v1.2.3