screen->tty
authorAlyssa Rosenzweig <alyssa@rosenzweig.io>
Mon, 25 Jun 2018 17:45:19 +0000 (13:45 -0400)
committerAlyssa Rosenzweig <alyssa@rosenzweig.io>
Mon, 25 Jun 2018 17:45:19 +0000 (13:45 -0400)
libremanage.py

index 4f7b74bd893a629011147512910135982ce89e3d..7700739f3fe26631a3bd9666c64b2a085030ea1b 100644 (file)
@@ -34,7 +34,7 @@ Server names are defined in the accompanying config.py.
 Valid commands are as follows:
 
     - shutdown, reboot, poweron: Power management
-    - screen: Open TTY in GNU Screen
+    - tty: Open TTY in GNU Screen
 """
 
 def die_with_usage(message):
@@ -61,7 +61,7 @@ COMMANDS = {
 
         # TTY access (or keyboard if wired as such)
 
-        "screen": (True, lambda s: print("Screening on " + s))
+        "tty": (True, lambda s: print("Screening on " + s))
 }
 
 def issue_command(server_name, command):