--- /dev/null
+/etc/baculum/baculum.lighttpd.conf
+/var/www/baculum/protected/Data/baculum.users
--- /dev/null
+#!/bin/sh
+### BEGIN INIT INFO
+# Provides: baculum
+# Required-Start: $local_fs $remote_fs $network $syslog $named
+# Required-Stop: $local_fs $remote_fs $network $syslog $named
+# Default-Start: 2 3 4 5
+# Default-Stop: 0 1 6
+# Short-Description: Start/stop Baculum
+# Description: Start the Baculum WebGUI Bacula Community tool.
+# This script uses Lighttpd web server for working Baculum WebGUI tool.
+### END INIT INFO
+
+DESC="Baculum WebGUI Bacula Community tool"
+NAME=baculum
+SCRIPTNAME=/etc/init.d/$NAME
+DAEMON=/usr/sbin/lighttpd
+DAEMON_OPTS="-f /etc/baculum/baculum.lighttpd.conf"
+PIDFILE="/var/run/$NAME.pid"
+
+test -x $DAEMON || exit 0
+
+set -e
+
+check_syntax()
+{
+ $DAEMON -t $DAEMON_OPTS > /dev/null || exit $?
+}
+
+. /lib/lsb/init-functions
+
+case "$1" in
+ start)
+ check_syntax
+ log_daemon_msg "Starting $DESC" $NAME
+ if ! start-stop-daemon --start --oknodo --quiet \
+ --pidfile $PIDFILE --exec $DAEMON -- $DAEMON_OPTS
+ then
+ log_end_msg 1
+ else
+ log_end_msg 0
+ fi
+ ;;
+ stop)
+ log_daemon_msg "Stopping $DESC" $NAME
+ if start-stop-daemon --stop --retry 30 --oknodo --quiet \
+ --pidfile $PIDFILE --exec $DAEMON
+ then
+ rm -f $PIDFILE
+ log_end_msg 0
+ else
+ log_end_msg 1
+ fi
+ ;;
+ reload|force-reload)
+ check_syntax
+ log_daemon_msg "Reloading $DESC configuration" $NAME
+ if start-stop-daemon --stop --signal INT --quiet \
+ --pidfile $PIDFILE --exec $DAEMON
+ then
+ rm $PIDFILE
+ if start-stop-daemon --start --quiet \
+ --pidfile $PIDFILE --exec $DAEMON -- $DAEMON_OPTS ; then
+ log_end_msg 0
+ else
+ log_end_msg 1
+ fi
+ else
+ log_end_msg 1
+ fi
+ ;;
+ reopen-logs)
+ log_daemon_msg "Reopening $DESC logs" $NAME
+ if start-stop-daemon --stop --signal HUP --oknodo --quiet \
+ --pidfile $PIDFILE --exec $DAEMON
+ then
+ log_end_msg 0
+ else
+ log_end_msg 1
+ fi
+ ;;
+ restart)
+ check_syntax
+ $0 stop
+ $0 start
+ ;;
+ status)
+ status_of_proc -p "$PIDFILE" "$DAEMON" lighttpd && exit 0 || exit $?
+ ;;
+ *)
+ echo "Usage: $SCRIPTNAME {start|stop|restart|reload|force-reload|status}" >&2
+ exit 1
+ ;;
+esac
+
+exit 0
\ No newline at end of file
--- /dev/null
+#!/bin/sh
+set -e
+
+. /usr/share/debconf/confmodule
+
+db_version 2.0
+
+if [ "$1" = "configure" ] ; then
+ chown root:root /etc/baculum
+ chown -R www-data:www-data /var/www/baculum
+ chmod 750 /etc/baculum
+ chmod 750 /var/www/baculum/protected/Data
+fi
--- /dev/null
+misc:Depends=
--- /dev/null
+baculum (7.0.5) stable; urgency=low
+
+ * new upstream
+
+ -- Marcin Haba <marcin.haba@bacula.pl> Sun, 22 Jun 2014 16:55:01 +0200
--- /dev/null
+9
\ No newline at end of file
--- /dev/null
+Source: baculum
+Section: base
+Priority: optional
+Maintainer: Marcin Haba <marcin.haba@bacula.pl>
+Build-Depends: debhelper (>= 4.0.0)
+Standards-Version: 3.6.1
+
+Package: baculum
+Section: base
+Architecture: all
+Depends: php5-cgi, php5-curl, php5-mysql, php5-pgsql, php5-sqlite, php5-json, lighttpd
+Description: Baculum WebGUI tool for Bacula Community program
+
--- /dev/null
+etc/baculum
+var/www/baculum
\ No newline at end of file
--- /dev/null
+baculum_7.0.5_all.deb base optional
--- /dev/null
+.htaccess /var/www/baculum/
+AUTHORS /var/www/baculum/
+assets /var/www/baculum/
+framework /var/www/baculum/
+index.php /var/www/baculum/
+LICENSE /var/www/baculum/
+protected /var/www/baculum/
+themes /var/www/baculum/
+examples/baculum.users /var/www/baculum/protected/Data
+examples/baculum.lighttpd.conf /etc/baculum
--- /dev/null
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+PACKAGE_NAME = baculum
+
+%:
+ dh $@