Hello, list! На 24.10.2012 г. 23:49, Matt Housh написа:
Greetings,
The CRUX team would like to announce that CRUX 2.8 x86 has been released.
Congrats on the fine new release! I have a specific question, though. I just upgraded a couple of CRUX 2.7 machines to 2.8 and as I was manually upgrading some of my specific packages, I happen to rebuild samba on both of them, and I had to use /etc/rc.d/samba manually. As of 2.8 /etc/rc.d/samba which is part of the samba opt ports reads:
#!/bin/sh # # /etc/rc.d/samba: start/stop samba daemon #
case $1 in start) /usr/sbin/nmbd -D /usr/sbin/smbd -D ;; stop) killall -q smbd killall -q nmbd ;; restart) $0 stop sleep 2 $0 start ;; reload) /usr/bin/smbcontrol smbd reload-config ;; *) echo "usage: $0 [start|stop|restart|reload]" ;; esac
# End of file
As I was making adjustments to one smb.conf I used "/etc/rc.d/samba stop" and "/etc/rc.d/samba start". The stop command results in this:
/etc/rc.d/samba: line 12: killall: command not found /etc/rc.d/samba: line 13: killall: command not found
Where is the killall command gone in CRUX 2.8? Do I have to install some package, which just happens to be absent from core? Thanks in advance for all you answers and keep up the great work! -- Plamen Petrov