{% extends "base.html" %} {% block title %}Enrollment — Manage{% endblock %} {% block content %}

Enrollment

New enrollment token

{% if new_token %}

Token created

Run this on each Ubuntu machine you want to enroll. The token is shown once.

curl -fsSL {{ public_url }}/install.sh | sudo MANAGE_SERVER={{ public_url }} MANAGE_TOKEN={{ new_token }} bash
{% endif %}

Existing tokens

{% for t in tokens %} {% else %} {% endfor %}
LabelDefault groupCreatedExpiresStatus
{{ t.label or "—" }} {{ t.default_group.name if t.default_group else "—" }} {{ t.created_rel }} {{ t.expires_rel }} {% if t.token.revoked %}revoked{% elif t.expired %}expired{% else %}active{% endif %} {% if not t.token.revoked %}
{% endif %}
No tokens yet.
{% endblock %}