diff options
author | kris <kris@FreeBSD.org> | 2001-01-28 16:53:51 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2001-01-28 16:53:51 +0800 |
commit | 90b365f868b40a369009bf91872489a38d53ec21 (patch) | |
tree | 120f326ba18e9003f3139f318c229867afa0c49a /astro | |
parent | 0a324ff153d99b03d364910b9a322d207ead4922 (diff) | |
download | freebsd-ports-gnome-90b365f868b40a369009bf91872489a38d53ec21.tar.gz freebsd-ports-gnome-90b365f868b40a369009bf91872489a38d53ec21.tar.zst freebsd-ports-gnome-90b365f868b40a369009bf91872489a38d53ec21.zip |
Invoke su with the -f option to fix the script.
Approved by: Maintainer
PR: ports/19780
Diffstat (limited to 'astro')
-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}" |