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 (25 lines) | stat: -rw-r--r-- 965 bytes parent folder | download | duplicates (4)
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
cc_resizefs:
  description: |
    Resize a filesystem to use all available space on partition. This module is
    useful along with ``cc_growpart`` and will ensure that if the root
    partition has been resized, the root filesystem will be resized along with
    it.

    By default, ``cc_resizefs`` will resize the root partition and will block
    the boot process while the ``resize`` command is running.

    Optionally, the resize operation can be performed in the background
    while cloud-init continues running modules. This can be enabled by setting
    ``resize_rootfs`` to ``noblock``.

    This module can be disabled altogether by setting ``resize_rootfs`` to
    ``false``.
  examples:
  - comment: |
      Example 1: Disable root filesystem resize operation.
    file: cc_resizefs/example1.yaml
  - comment: |
      Example 2: Runs resize operation in the background.
    file: cc_resizefs/example2.yaml
  name: Resizefs
  title: Resize filesystem