diff --git a/debian/autoradio.default b/debian/autoradio.default
index 213d271e0119af69b92758b0f9e27e8d6dc7a63f..530e1f05589a09f5bc4ae18357fa6c7629e60747 100644
--- a/debian/autoradio.default
+++ b/debian/autoradio.default
@@ -16,5 +16,6 @@ DOMAIN=""
 # Set the etcd servers to connect to (default: etcd.$DOMAIN).
 #ETCD_SERVER=""
 
-# Additional options that are passed to the daemons.
-DAEMON_OPTIONS=""
+# Additional options that are passed to specific daemons.
+RADIOD_OPTIONS=""
+REDIRECTORD_OPTIONS=""
diff --git a/debian/changelog b/debian/changelog
index 9c118a3569ee8d72d0dd3795cc1a4c374eea67c6..cd52a0c2190389dd241750191b5e5b3dc4547897 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+autoradio (0.2-1) unstable; urgency=low
+
+  * Fixes to packaging scripts.
+
+ -- ale <ale@incal.net>  Sun, 22 Dec 2013 18:36:23 +0000
+
 autoradio (0.2) unstable; urgency=low
 
   * Update to the etcd 0.2 API.
diff --git a/debian/services/radiod b/debian/services/radiod
index bbf8b4a344f6313eaa8abda1ae50a99368cf1055..a407f2e146d2896c8224dbd1c5ef6bafa4083eea 100755
--- a/debian/services/radiod
+++ b/debian/services/radiod
@@ -6,5 +6,5 @@ set_public_ip
 set_etcd_params
 
 exec chpst -u icecast2 \
-    radiod --ip=${PUBLIC_IP} ${ETCD_OPTIONS} ${DAEMON_OPTIONS} \
+    radiod --ip=${PUBLIC_IP} ${ETCD_OPTIONS} ${RADIOD_OPTIONS} \
     2>&1
diff --git a/debian/services/redirectord b/debian/services/redirectord
index 165504c03a2e26a31704aab5186bb13e5ff2896a..9f6fd22044a7f0f92b8120b44d431b72385bb9b7 100755
--- a/debian/services/redirectord
+++ b/debian/services/redirectord
@@ -7,5 +7,5 @@ set_etcd_params
 
 exec chpst -u nobody \
     redirectord --ip=${PUBLIC_IP} --domain=${DOMAIN} \
-    ${ETCD_OPTIONS} ${DAEMON_OPTIONS} \
+    ${ETCD_OPTIONS} ${REDIRECTORD_OPTIONS} \
     2>&1