summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Gianelloni <wolf31o2@gentoo.org>2006-09-05 16:58:01 +0000
committerChris Gianelloni <wolf31o2@gentoo.org>2006-09-05 16:58:01 +0000
commitf0fd5769fa65799bfc4a0edd32a5e843b18273b9 (patch)
tree9d9b5100e3e200fe6eede012098ddfebde5c6ea8 /app-admin/pwgen/files
parentMark gcc-4.1.1 stable on mips, with -r1 in unstable. (diff)
downloadgentoo-2-f0fd5769fa65799bfc4a0edd32a5e843b18273b9.tar.gz
gentoo-2-f0fd5769fa65799bfc4a0edd32a5e843b18273b9.tar.bz2
gentoo-2-f0fd5769fa65799bfc4a0edd32a5e843b18273b9.zip
Removing the escapes in the init script. Thanks to Tim Yamin <plasmaroo@gentoo.org> for pointing it out.
(Portage version: 2.1.1_rc1-r1)
Diffstat (limited to 'app-admin/pwgen/files')
-rw-r--r--app-admin/pwgen/files/pwgen.rc4
1 files changed, 2 insertions, 2 deletions
diff --git a/app-admin/pwgen/files/pwgen.rc b/app-admin/pwgen/files/pwgen.rc
index a0294a231252..26cabce568fe 100644
--- a/app-admin/pwgen/files/pwgen.rc
+++ b/app-admin/pwgen/files/pwgen.rc
@@ -1,7 +1,7 @@
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/pwgen/files/pwgen.rc,v 1.3 2004/07/14 21:17:55 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/pwgen/files/pwgen.rc,v 1.4 2006/09/05 16:58:01 wolf31o2 Exp $
depend() {
before local
@@ -9,7 +9,7 @@ depend() {
start() {
ebegin "Auto-scrambling root password for security"
- echo root:\`pwgen -s 16\` | chpasswd > /dev/null 2>&1
+ echo root:`pwgen -s 16` | chpasswd > /dev/null 2>&1
eend $? "Failed to scramble root password."
}