summaryrefslogtreecommitdiffstats
path: root/README
diff options
context:
space:
mode:
authorNalin Dahyabhai <nalin.dahyabhai@pobox.com>2008-03-20 11:58:00 -0400
committerNalin Dahyabhai <nalin.dahyabhai@pobox.com>2008-03-20 11:58:00 -0400
commit48037909a5a5c8e0640c33352de6aa942f532d8c (patch)
tree6123e59209f23cf9f35314729ed0aed0adc04ebc /README
downloadautologin-48037909a5a5c8e0640c33352de6aa942f532d8c.tar.gz
autologin-48037909a5a5c8e0640c33352de6aa942f532d8c.tar.xz
autologin-48037909a5a5c8e0640c33352de6aa942f532d8c.zip
- stable version
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>