diff options
author | brian <brian@FreeBSD.org> | 2000-09-28 05:43:44 +0000 |
---|---|---|
committer | brian <brian@FreeBSD.org> | 2000-09-28 05:43:44 +0000 |
commit | 6605e8805b82f3969951388debe3ecc0b55d1436 (patch) | |
tree | fa3d86f63eeb15f6cdc7f477f25f11e593c07abe /etc/network.subr | |
parent | 295f1fc1dc896873286d6a38a5612712befd4b02 (diff) | |
download | FreeBSD-src-6605e8805b82f3969951388debe3ecc0b55d1436.zip FreeBSD-src-6605e8805b82f3969951388debe3ecc0b55d1436.tar.gz |
Use su -m instead of just su to avoid reading the users login profile
Diffstat (limited to 'etc/network.subr')
-rw-r--r-- | etc/network.subr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/network.subr b/etc/network.subr index 168f3bd..8e97b44 100644 --- a/etc/network.subr +++ b/etc/network.subr @@ -175,7 +175,7 @@ network_pass1() { ppp_command="${ppp_command} ${ppp_profile}" echo -n "Starting ppp as \"${ppp_user}\"" - su ${ppp_user} -c "exec ${ppp_command}" + su -m ${ppp_user} -c "exec ${ppp_command}" ;; esac |