make: Replace direct invocations of ssh by $(CVS_RSH)

This commit is contained in:
Jan Lindemann 2007-08-23 10:57:38 +00:00 committed by Jan Lindemann
commit 3b954bc5c1
8 changed files with 24 additions and 23 deletions

View file

@ -176,7 +176,7 @@ copy-devel.done: $(F_RPM_DEVEL)
ping:
ping $(HOST)
ssh:
ssh -l root $(HOST)
$(CVS_RSH) -l root $(HOST)
# user targets
unpack: unpack.done
@ -193,13 +193,13 @@ copy-devel: copy-devel.done
copy: copy-run copy-devel
patch: patches.done
shutdown:
ssh -l root $(HOST) "shutdown -h now"
$(CVS_RSH) -l root $(HOST) "shutdown -h now"
reboot:
ssh -l root $(HOST) "reboot"
-l root $(HOST) "reboot"
update-rpm: copy
ssh -l root $(HOST) rpm -U $(addprefix rpm/,$(F_RPMS))
$(CVS_RSH) -l root $(HOST) rpm -U $(addprefix rpm/,$(F_RPMS))
erase-rpm:
ssh -l root $(HOST) rpm -e $(KERNEL_BASE)-run $(KERNEL_BASE)-devel
$(CVS_RSH) -l root $(HOST) rpm -e $(KERNEL_BASE)-run $(KERNEL_BASE)-devel
dist: clean
cd ..;\
tar -czf kernel.tar.gz `find kernel -maxdepth 1 -type f | grep -ve "setup\|trash\|CVS"`