Skip to main content Link Menu Expand (external link) Document Search Copy Copied

Package Management


Table of contents

  1. Introduction
  2. Installing packages
  3. Updating system packages
  4. Adding extra repositories

Introduction

During first boot, cloud-init can be asked to manage enabled repositories, installed packages or even upgrade your system using the Package module in your /boot/user-data file.

Installing packages

To install packages during the system provisioning phase you need to configure both the package_update & packages parameters. package_update instruct the system to refresh the local package list from configured repositories and packages define the list of package to install.

For example, if you wanted to install the vim and htop packages during provisioning, it would look like this:

#cloud-coufig
package_update: true
packages:
  - vim
  - htop

Updating system packages

It is also possible, and recommended, to upgrade all existing package in the system at first-boot. This will make sure that your newly configured system is up-to-date with the latest security fixes available.

To do we, we will need to use the package_update and package_upgrade directives, we can also use the package_reboot_if_required parameter to define if we want the cloud-init to reboot the system if a package requiring it has been updated. This can be important if the kernel is updated though might not be required if you instruct cloud-init to reboot the system post-provisioning using the Power State module.

#cloud-coufig
package_update: true
package_upgrade: true
package_reboot_if_required: true

Adding extra repositories

There might be cases where you want to set up extra package repositories to install packages not available in the official Debian ones. This can be done quite easily using the Apt Configure cloud-init module.

For example, to add the Docker CE repository to your system, you would set it up as follows (replace <key_data> with its real data):

#cloud-coufig
apt:
  preserve_sources_list: true
  sources:
    docker-ce.list:
      source: "deb [arch=armhf] https://download.docker.com/linux/raspbian bullseye stable"
      key: |
        -----BEGIN PGP PUBLIC KEY BLOCK-----
        <key_data>
        -----END PGP PUBLIC KEY BLOCK-----

A complete configuration that also install and configure docker is available here.