2010-11-16 14:35:27 +01:00
|
|
|
From 3c13edc2b9aeab8f24e60a62ab5e8a8db554486f Mon Sep 17 00:00:00 2001
|
|
|
|
From: Ludwig Nussel <ludwig.nussel@suse.de>
|
|
|
|
Date: Mon, 9 Aug 2010 16:02:30 +0200
|
|
|
|
Subject: [PATCH 4/7] set sane default path
|
|
|
|
|
|
|
|
---
|
|
|
|
src/su.c | 12 ++----------
|
|
|
|
1 files changed, 2 insertions(+), 10 deletions(-)
|
|
|
|
|
2013-01-16 20:09:57 +01:00
|
|
|
Index: coreutils-8.17/src/su.c
|
|
|
|
===================================================================
|
|
|
|
--- coreutils-8.17.orig/src/su.c
|
|
|
|
+++ coreutils-8.17/src/su.c
|
2010-11-16 14:35:27 +01:00
|
|
|
@@ -112,18 +112,10 @@
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* The default PATH for simulated logins to non-superuser accounts. */
|
|
|
|
-#ifdef _PATH_DEFPATH
|
|
|
|
-# define DEFAULT_LOGIN_PATH _PATH_DEFPATH
|
|
|
|
-#else
|
|
|
|
-# define DEFAULT_LOGIN_PATH ":/usr/ucb:/bin:/usr/bin"
|
|
|
|
-#endif
|
|
|
|
+#define DEFAULT_LOGIN_PATH "/usr/local/bin:/bin:/usr/bin"
|
|
|
|
|
|
|
|
/* The default PATH for simulated logins to superuser accounts. */
|
|
|
|
-#ifdef _PATH_DEFPATH_ROOT
|
|
|
|
-# define DEFAULT_ROOT_LOGIN_PATH _PATH_DEFPATH_ROOT
|
|
|
|
-#else
|
|
|
|
-# define DEFAULT_ROOT_LOGIN_PATH "/usr/ucb:/bin:/usr/bin:/etc"
|
|
|
|
-#endif
|
|
|
|
+#define DEFAULT_ROOT_LOGIN_PATH "/usr/sbin:/bin:/usr/bin:/sbin"
|
|
|
|
|
|
|
|
/* The shell to run if none is given in the user's passwd entry. */
|
|
|
|
#define DEFAULT_SHELL "/bin/sh"
|