I would rather get the package into shape and into unstable first, to be
honest.

Besides, there are more urgent issues to resolve with the current
package.

According to our tests, there are is one blocker: the init.d script
doesn't actually compile properly. Here's a patch for that:

--- init.d.orig	2012-03-25 18:57:04.670772507 -0400
+++ init.d	2012-03-25 18:57:17.926911090 -0400
@@ -33,7 +33,7 @@
 case "$1" in
   start)
 	echo -n "Starting $DESC: $NAME "
-	if [ ! -d "$RUNDIR"; then
+	if [ ! -d "$RUNDIR" ]; then
 		echo -n "run folder missing "
 		rm -rf "$RUNDIR"
 		echo -n "cleared "
@@ -62,7 +62,7 @@
 	;;
   reload|force-reload)
     	echo -n "Reloading $DESC configuration files: $NAME "
-	if [ ! -d "$RUNDIR"; then
+	if [ ! -d "$RUNDIR" ]; then
 		echo -n "run folder missing "
 		rm -rf "$RUNDIR"
 		echo -n "cleared "
@@ -77,7 +77,7 @@
 	;;
   restart)
     	echo -n "Restarting $DESC: $NAME "
-	if [ ! -d "$RUNDIR"; then
+	if [ ! -d "$RUNDIR" ]; then
 		echo -n "run folder missing "
 		rm -rf "$RUNDIR"
 		echo -n "cleared "
The other issue is that there is no config file installed in
/etc/atheme-services, which makes the package a bit ackward after
install. Is there a sample upstream config with proper defaults we could
deploy in debian/rules?

Finally, I notice that the SVN repository hasn't been updated with the
work you have just did. Do you have access to that project in Alioth,
and if not, can we arrange so that you publish your changes there?

I'm not really attached to the SVN repository however, we could as well
startup a new git repo somewhere. I just want to avoid the flying
tarballs and have a reference, versionned, repository of our changes.

Thanks for the hard work, we're almost there!

A.

On Sun, 25 Mar 2012 13:08:12 -0400, micah <mi...@riseup.net> wrote:
> 
> Hi,
> 
> It would be great if you could add the hardening-flags to the
> atheme-services package, as described here:
> 
> http://wiki.debian.org/HardeningWalkthrough
> 
> thanks,
> micah
> 
> -- 

-- 
feature, n: a documented bug | bug, n: an undocumented feature
                        - Mario S F Ferreira <li...@freebsd.org>

Attachment: pgpCgL98QqE5V.pgp
Description: PGP signature

Reply via email to