Juniper re-learnings, Workstation

July 10, 2026

Workstation

#!/bin/bash
# Executes right before the EVE-NG OS goes to sleep
if [ "$1" = "pre" ]; then
    # Gracefully stops all active nodes (including your vJunos switch)
    /opt/unetlab/wrappers/unl_wrapper -a stopall

    # Gives the virtual disk images a few seconds to flush data to disk
    sleep 5
fi