2018-09-01 23:07:42 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Rebuild /etc/issue
|
2018-09-04 21:42:26 +02:00
|
|
|
/usr/bin/vmmgr rebuild-issue
|
2018-09-01 23:07:42 +02:00
|
|
|
# Remove double-escaping needed for the real /etc/issue
|
|
|
|
/bin/sed 's|\\\\|\\|g' /etc/issue
|
|
|
|
# Wait for key press
|
|
|
|
read a
|