diff options
| author | Darren Reed <darrenr@FreeBSD.org> | 2005-04-25 17:31:50 +0000 |
|---|---|---|
| committer | Darren Reed <darrenr@FreeBSD.org> | 2005-04-25 17:31:50 +0000 |
| commit | 144279dcb8a3b2717370088ac878f23066aee9e9 (patch) | |
| tree | e2e1c7115044e6dfc86ff65598566fa32e5f7421 /contrib/ipfilter/bsdinstall | |
| parent | dfb9a48c6965171c72436fae97fdb25542af491f (diff) | |
Notes
Diffstat (limited to 'contrib/ipfilter/bsdinstall')
| -rwxr-xr-x | contrib/ipfilter/bsdinstall | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/contrib/ipfilter/bsdinstall b/contrib/ipfilter/bsdinstall index ce921b60fa47..7689a2105325 100755 --- a/contrib/ipfilter/bsdinstall +++ b/contrib/ipfilter/bsdinstall @@ -5,8 +5,13 @@ cmd=/bin/mv strip="" chmod="chmod 755" -chown="chown -f root" -chgrp="chgrp -f bin" +if [ "`uname -s`" = "HP-UX" ] ; then + chown="chown root" + chgrp="chgrp bin" +else + chown="chown -f root" + chgrp="chgrp -f bin" +fi while true ; do case $1 in -s ) strip="strip" |
