From bca883428897b40609f471695d56cd6f71dc031c Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Sat, 17 Aug 2024 21:21:24 +0200 Subject: [PATCH] tests/serial-console-connection: update default hostname For bookworm. --- tests/serial-console-connection | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/serial-console-connection b/tests/serial-console-connection index 14a9c2e..8778e6e 100755 --- a/tests/serial-console-connection +++ b/tests/serial-console-connection @@ -1,4 +1,4 @@ -#!/usr/bin/env python3 +#!/usr/bin/env python import argparse import serial import sys @@ -15,7 +15,7 @@ parser.add_argument( help="serial console device to connect " + "to (e.g. /dev/pts/X)", ) parser.add_argument( - "--hostname", default="buster", help="hostname of the system for login process" + "--hostname", default="bookworm", help="hostname of the system for login process" ) parser.add_argument("--user", default="root", help="user name to use for login") parser.add_argument("--password", default="grml", help="password for login")