14 lines
188 B
Plaintext
14 lines
188 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# Exit on error
|
||
|
set -e
|
||
|
|
||
|
# Source debconf library.
|
||
|
. /usr/share/debconf/confmodule
|
||
|
|
||
|
# query board
|
||
|
db_input critical acrn-hypervisor/board || true
|
||
|
|
||
|
# Show interface
|
||
|
db_go || true
|