svn path=/trunk/packages/sipb-xen-base/; revision=702
+sipb-xen-base (8.3) unstable; urgency=low
+
+ * add invirt-reload to regenerate and reload configs
+
+ -- Greg Price <price@mit.edu> Mon, 21 Jul 2008 20:35:42 -0400
+
sipb-xen-base (8.2) unstable; urgency=low
* leave out debathena-system so we get only the packages we ask for
sipb-xen-base (8.2) unstable; urgency=low
* leave out debathena-system so we get only the packages we ask for
--- /dev/null
+#!/bin/bash
+
+for script in $(run-parts --test /etc/init.d); do
+ if [ "${script#/etc/init.d/sipb-xen-}" != "$script" \
+ -o "${script#/etc/init.d/invirt-}" != "$script" ]; then
+ "$script" reload
+ fi
+done