about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authoradmins <admins@tilde.institute>2020-07-04 00:02:16 -0400
committeradmins <admins@tilde.institute>2020-07-04 00:02:16 -0400
commit7c5db7e0d4d498bc313cc753242cda894a9bb367 (patch)
tree07edf216bcc383bdb2a0f91a0cbe7eebf6466764
parent6802073f98204642d972458c365210ae4973a24d (diff)
downloadadmin-7c5db7e0d4d498bc313cc753242cda894a9bb367.tar.gz
added an Isaac Newton quote to motd rotation
-rwxr-xr-xbin/motdrotate.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/motdrotate.py b/bin/motdrotate.py
index 003d21d..67c45ae 100755
--- a/bin/motdrotate.py
+++ b/bin/motdrotate.py
@@ -25,7 +25,8 @@ def rotatemotd(motd):
             '"If we lose love and self-respect for each other, this is how we finally die."',
             '"We live in a society exquisitely dependent on science and technology, in which hardly anyone knows anything about science and technology."',
             '"Any sufficiently advanced technology is indistinguishable from magic."',
-            '"The biggest mistake I made was believing if I cast a beautiful net, I\'d catch only beautiful things."']
+            '"The biggest mistake I made was believing if I cast a beautiful net, I\'d catch only beautiful things."',
+            '"What we know is a drop, what we don\'t know is an ocean." - Isaac Newton']
     motdchoice = random.choice(motdmsgs)
     try:
         with open("/etc/motd", "w") as etcmotd: