File: data.yaml

package info (click to toggle)
cloud-init 25.1.4-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 12,052 kB
  • sloc: python: 134,399; sh: 3,879; makefile: 128; javascript: 30; xml: 22
file content (42 lines) | stat: -rw-r--r-- 1,893 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
cc_set_hostname:
  description: |
    This module handles setting the system hostname and fully qualified domain
    name (FQDN). If ``preserve_hostname`` is set, then the hostname will not be
    altered.
    
    A hostname and FQDN can be provided by specifying a full domain name under
    the ``fqdn`` key. Alternatively, a hostname can be specified using the
    ``hostname`` key, and the FQDN of the cloud will be used. If a FQDN is
    specified with the ``hostname`` key, it will be handled properly, although
    it is better to use the ``fqdn`` config key. If both ``fqdn`` and
    ``hostname`` are set, then ``prefer_fqdn_over_hostname`` will force use of
    FQDN in all distros when true, and when false it will force the short
    hostname. Otherwise, the hostname to use is distro-dependent.

    .. note::
       Cloud-init performs no hostname input validation before sending the
       hostname to distro-specific tools, and most tools will not accept a
       trailing dot on the FQDN.
    
    This module will run in the init-local stage before networking is
    configured if the hostname is set by metadata or user data on the local
    system.
    
    This will occur on datasources like NoCloud and OVF where metadata and user
    data are available locally. This ensures that the desired hostname is
    applied before any DHCP requests are performed on these platforms where
    dynamic DNS is based on initial hostname.
  examples:
  - comment: |
      Example 1:
    file: cc_set_hostname/example1.yaml
  - comment: |
      Example 2:
    file: cc_set_hostname/example2.yaml
  - comment: >
      Example 3: On a machine without an ``/etc/hostname`` file, don't create
      it. In most clouds, this will result in a DHCP-configured hostname
      provided by the cloud.
    file: cc_set_hostname/example3.yaml
  name: Set Hostname
  title: Set hostname and FQDN