1
0
forked from ports/contrib

dsh: remove dependency on netkit-rsh

This commit is contained in:
Thomas Penteker 2008-08-17 21:20:45 +02:00
parent f799c2ab5c
commit fc894e5e4b
2 changed files with 4 additions and 3 deletions

View File

@ -7,8 +7,6 @@ lrwxrwxrwx root/root etc/dsh/group/all -> /etc/dsh/machines.list
drwxr-xr-x root/root usr/ drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/ drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/dsh -rwxr-xr-x root/root usr/bin/dsh
drwxr-xr-x root/root usr/etc/
-rw-r--r-- root/root usr/etc/dsh.conf
drwxr-xr-x root/root usr/man/ drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/ drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/dsh.1.gz -rw-r--r-- root/root usr/man/man1/dsh.1.gz

View File

@ -2,7 +2,7 @@
# URL: http://www.netfort.gr.jp/~dancer/software/dsh.html.en # URL: http://www.netfort.gr.jp/~dancer/software/dsh.html.en
# Maintainer: Thomas Penteker, tek at serverop dot de # Maintainer: Thomas Penteker, tek at serverop dot de
# Packager: James Mills, prologic at shortcircuit dot net dot au # Packager: James Mills, prologic at shortcircuit dot net dot au
# Depends on: libdshconfig, netkit-rsh # Depends on: libdshconfig
name=dsh name=dsh
version=0.25.9 version=0.25.9
@ -22,9 +22,12 @@ build () {
rm -rf $PKG/usr/man/ja rm -rf $PKG/usr/man/ja
sed -i -e 's|rsh|ssh|g' $name.conf
mkdir -p $PKG/etc/$name/group mkdir -p $PKG/etc/$name/group
install -m644 $SRC/machines.list $PKG/etc/$name/ install -m644 $SRC/machines.list $PKG/etc/$name/
install -m644 $name.conf $PKG/etc/$name/ install -m644 $name.conf $PKG/etc/$name/
ln -sf /etc/$name/machines.list $PKG/etc/$name/group/all ln -sf /etc/$name/machines.list $PKG/etc/$name/group/all
rm -r $PKG/usr/etc
} }