9 lines
188 B
Plaintext
9 lines
188 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# Rebuild /etc/issue
|
||
|
/usr/bin/spotter-appmgr rebuild-issue
|
||
|
# Remove double-escaping needed for the real /etc/issue
|
||
|
/bin/sed 's|\\\\|\\|g' /etc/issue
|
||
|
# Wait for key press
|
||
|
read a
|