10 lines
301 B
Bash
Executable file
10 lines
301 B
Bash
Executable file
#!/usr/bin/bash
|
|
#
|
|
# Quick script to attach to tmux where anaconda is running.
|
|
#
|
|
# It is used by Lorax to set up the "install" user account.
|
|
# The `ssh install@HOSTNAME` command will attach you to tmux,
|
|
# so you can control the text mode installation right away.
|
|
#
|
|
|
|
/usr/bin/tmux -u attach -t anaconda
|