Skip to content

Ansible role to manage the coreboot utility script installation and update

Notifications You must be signed in to change notification settings

REve-Workshop/ansible-librem-coreboot-role

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ansible Role for CoreBoot utility script Installation

WARNING

Do not rely on the code blindly, it as not been tested yet.

Introduction

This Ansible role allows to install or update the CoreBoot utility script for Librem laptops.

This role expects:

  • All dependencies to be installed on the target host.
  • The target to have an access to the repositories containing the sources of the utility script and the software it manage.

Installation

Add this repository as a role directory inside an existing ansible project.

Usage

The following variables can be overloaded in your playbook:

The role is to be execute as the root user on the target hosts.

Example playbook

---
- host: all
  connect: local  
  gather_facts: False
  tasks:
    - name: Update CoreBoot
      include_role:
        name: librem-coreboot
      vars:
        working_directory: "/var/lib/src/git_repos/coreboot"