diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2001-01-28 08:53:51 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2001-01-28 08:53:51 +0000 |
commit | a0eb48a4977a3515be1161f0733fd6088ecbf7a2 (patch) | |
tree | a33668faabf701937ee0809ce5d2755e72c4f911 /astro/setiathome/files | |
parent | add dotconf, A Configuration File Parser Library (diff) |
Invoke su with the -f option to fix the script.
Approved by: Maintainer
PR: ports/19780
Notes
Notes:
svn path=/head/; revision=37673
Diffstat (limited to 'astro/setiathome/files')
-rw-r--r-- | astro/setiathome/files/setiathome.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/astro/setiathome/files/setiathome.sh b/astro/setiathome/files/setiathome.sh index 65b8ec941cf9..23868446c3d3 100644 --- a/astro/setiathome/files/setiathome.sh +++ b/astro/setiathome/files/setiathome.sh @@ -47,7 +47,7 @@ case $1 in fi done for i in ${seti_wrksuff}; do - su -m ${seti_user} -c "\ + su -fm ${seti_user} -c "\ (cd ${seti_wrkdir}/${i} && \ exec ${PREFIX}/${seti_bindir}/${seti_command} \ ${seti_std_args} \ @@ -75,7 +75,7 @@ case $1 in fi # No need to register if we've already done so if [ "X${seti_dontlogin}" != "Xyes" ]; then - su -m ${seti_user} -c "\ + su -fm ${seti_user} -c "\ cd ${seti_wrkdir} && \ exec ${PREFIX}/${seti_bindir}/${seti_command} \ ${seti_reg_args}" |