{% extends "base.html" %} {% block title %}Snapshots - garuda-pilot{% endblock %} {% block content %}
Filesystem
{% if status.is_btrfs %} btrfs {% else %} not btrfs {% endif %}
Snapshot tool
{% if status.tool == "snapper" %} snapper ({{ status.config }}) {% else %} none {% endif %}
Auto-snapshots
{% if status.snap_pac_active %} snap-pac active {% elif status.tool == "snapper" %} garuda-pilot managed {% else %} none {% endif %}
Snapshots
{{ status.snapshots | length }}
{% if status.tool == "none" %}

Snapper not installed

{% if status.is_btrfs %}

Your root filesystem is btrfs. To enable snapshots:

  1. sudo pacman -S snapper snap-pac
  2. sudo snapper -c root create-config /
{% else %}

Snapshots require a btrfs root filesystem.

{% endif %}
{% else %}
{% if status.can_create %} {% else %} {% endif %}
{% include "snapshots_list.html" %}
{% endif %} {% endblock %}