summaryrefslogtreecommitdiffstats
path: root/README
diff options
context:
space:
mode:
Diffstat (limited to 'README')
-rw-r--r--README20
1 files changed, 20 insertions, 0 deletions
diff --git a/README b/README
new file mode 100644
index 0000000..a4ecba6
--- /dev/null
+++ b/README
@@ -0,0 +1,20 @@
+This is a program you can use to automatically log in on a workstation when
+it boots. Look for a line in /etc/inittab that looks like this:
+
+1:2345:respawn:/sbin/mingetty tty1
+
+Replace it with this:
+
+1:2345:respawn:/sbin/autlogin tty1 joeuser
+
+And joeuser will be logged in automatically when the system boots. To have
+some command other than a shell started, supply it as a third argument:
+
+1:2345:respawn:/sbin/autlogin tty1 joeuser startx
+
+Note that this is a potential security risk that's big enough to drive a truck
+through, and it's only guaranteed to work with pam_unix and possibly pam_pwdb.
+
+Consider yourself warned.
+
+Nalin Dahyabhai <nalin@redhat.com>