summaryrefslogtreecommitdiff
path: root/app-admin/pwgen/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
commitd87262dd706fec50cd150aab3e93883b6337466d (patch)
tree246b44c33ad7a57550430b0a60fa0df86a3c9e68 /app-admin/pwgen/files
parent71bc00c87bba1ce31de0dac6c3b7fd1aee6917fc (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'app-admin/pwgen/files')
-rw-r--r--app-admin/pwgen/files/2.06-special-char.patch11
-rw-r--r--app-admin/pwgen/files/pwgen.rc18
2 files changed, 0 insertions, 29 deletions
diff --git a/app-admin/pwgen/files/2.06-special-char.patch b/app-admin/pwgen/files/2.06-special-char.patch
deleted file mode 100644
index 3d014fa4bf11..000000000000
--- a/app-admin/pwgen/files/2.06-special-char.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/pwgen.c
-+++ b/pwgen.c
-@@ -138,7 +138,7 @@ int main(int argc, char **argv)
- break;
- case 's':
- pwgen = pw_rand;
-- pwgen_flags = PW_DIGITS | PW_UPPERS;
-+ pwgen_flags |= PW_DIGITS | PW_UPPERS;
- break;
- case 'C':
- do_columns = 1;
diff --git a/app-admin/pwgen/files/pwgen.rc b/app-admin/pwgen/files/pwgen.rc
deleted file mode 100644
index 94c4067e2faf..000000000000
--- a/app-admin/pwgen/files/pwgen.rc
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-depend() {
- before local
-}
-
-start() {
- ebegin "Auto-scrambling root password for security"
- echo root:`pwgen -s 16` | chpasswd > /dev/null 2>&1
- eend $? "Failed to scramble root password."
-}
-
-stop() {
- ebegin "Stopping pwgen"
- eend $? "Failed to stop pwgen."
-}