git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@369
d1e1f19c-881f-0410-ab34-
b69fee027534
--- /dev/null
+#!/sbin/runscript
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo/src/catalyst/livecd/files/Attic/livecd-rclocal,v 1.1 2004/05/12 21:19:34 zhen Exp $
+
+depend() {
+ after *
+}
+
+start() {
+ ebegin "Auto-scrambling root password for security"
+ echo root:\`pwgen -s 16\` | chpasswd > /dev/null 2>&1
+ eend $? "Failed to start local."
+}
+
+stop() {
+ ebegin "Stopping local"
+ eend $? "Failed to stop local."
+}