netatalk: bump version

Netatalk goes to version 3.0.
The startup script has changed too, there is now only one binary called
netatalk. No more afpd, cnid, ... at startup ! They are executed by netatalk.

All the config is done within /etc/afp.conf, look at :
http://netatalk.sourceforge.net/3.0/htmldocs/upgrade.html
for more info about the upgrade process.

[Peter: added --without-kerberos to disable kerberos detection]
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Maxime Hadjinlian 2012-10-01 06:23:36 +00:00 committed by Peter Korsgaard
parent a22e934240
commit cd4bce0ba6
2 changed files with 14 additions and 23 deletions

View File

@ -1,40 +1,30 @@
#!/bin/sh
#
# Start netatalk daemon (aftpd && cnid_metad)
#!/bin/sh
#
# Start netatalk
#
AFPD_UAMLIST="-U uams_dhx2.so,uams_clrtxt.so"
start() {
echo -n "Starting Netatalk services (this will take a while): "
echo "Starting afpd"
echo -n " afpd"
start-stop-daemon -S -q -p /var/run/afpd.pid --exec /usr/sbin/afpd -- $AFPD_UAMLIST -g nobody -c 50
echo -n " cnid_metad"
start-stop-daemon -S -q -p /var/run/cnid_metad.pid --exec /usr/sbin/cnid_metad -- -l log_note
echo "."
echo "Starting Netatalk"
start-stop-daemon -S -q -p /var/run/netatalk.pid --exec /usr/sbin/netatalk
}
stop(){
echo -n "Stopping Netatalk Daemons:"
echo -n " afpd"
start-stop-daemon -K -q -p /var/run/afpd.pid
echo -n " cnid_metad"
start-stop-daemon -K -q -p /var/run/cnid_metad.pid
echo "Stopping Netatalk"
start-stop-daemon -K -q -p /var/run/netatalk.pid
}
case "$1" in
start)
start
;;
;;
stop)
stop
;;
;;
restart)
start
stop
;;
*)
;;
*)
echo $"Usage: $0 {start|stop|restart}"
exit 1
esac

View File

@ -3,8 +3,8 @@
# netatalk
#
#############################################################
NETATALK_VERSION = 2.2.2
NETATALK_SITE = http://downloads.sourceforge.net/project/netatalk/netatalk/$(NETATALK_VERSION)/
NETATALK_VERSION = 3.0
NETATALK_SITE = http://downloads.sourceforge.net/project/netatalk/netatalk/$(NETATALK_VERSION)
NETATALK_SOURCE = netatalk-$(NETATALK_VERSION).tar.bz2
NETATALK_DEPENDENCIES = openssl berkeleydb libgcrypt libgpg-error
@ -16,6 +16,7 @@ NETATALK_CONF_OPT += --with-cnid-cdb-backend \
--with-libgcrypt-dir=$(STAGING_DIR)/usr \
--with-shadow \
--disable-shell-check \
--without-kerberos \
--without-pam
ifeq ($(BR2_PACKAGE_CUPS),y)