Browse Source

removed the debian folder as its conflicting with the build system

4.0
karl anderson 10 years ago
parent
commit
58f2b789ee
8 changed files with 0 additions and 125 deletions
  1. +0
    -7
      debian/changelog
  2. +0
    -1
      debian/compat
  3. +0
    -23
      debian/control
  4. +0
    -3
      debian/kazoo-configs-freeswitch.install
  5. +0
    -41
      debian/kazoo-configs-freeswitch.postinst
  6. +0
    -27
      debian/kazoo-configs-freeswitch.postrm
  7. +0
    -12
      debian/kazoo-configs.install
  8. +0
    -11
      debian/rules

+ 0
- 7
debian/changelog View File

@ -1,7 +0,0 @@
kazoo-configs (3-0) UNRELEASED; urgency=low
* Kazoo Configs.
-- Travis Cross <tc@traviscross.com> Mon, 26 May 2014 08:59:35 +0100

+ 0
- 1
debian/compat View File

@ -1 +0,0 @@
8

+ 0
- 23
debian/control View File

@ -1,23 +0,0 @@
#### Do not edit! This file is auto-generated from debian/bootstrap.sh.
Source: kazoo-configs
Section: comm
Priority: optional
Maintainer: Travis Cross <tc@traviscross.com>
Build-Depends: debhelper (>= 8.0.0)
Standards-Version: 3.9.3
Homepage: http://www.2600hz.com/
Package: kazoo-configs
Architecture: all
Provides: kazoo-configs-freeswitch
Depends: ${misc:Depends}
Description: Kazoo Configurations
This package contains the Kazoo Configuration Files.
Package: kazoo-configs-freeswitch
Architecture: all
Depends: ${misc:Depends}
Description: Kazoo Configurations for FreeSWITCH
This package contains the Kazoo Configuration Files fo FreeSWITCH.

+ 0
- 3
debian/kazoo-configs-freeswitch.install View File

@ -1,3 +0,0 @@
#### Do not edit! This file is auto-generated from debian/bootstrap.sh.
freeswitch /etc/kazoo

+ 0
- 41
debian/kazoo-configs-freeswitch.postinst View File

@ -1,41 +0,0 @@
#!/bin/sh
set -e
case "$1" in
configure)
if ! getent group freeswitch >/dev/null; then
groupadd --system freeswitch
fi
if ! getent passwd freeswitch >/dev/null; then
useradd --system -g freeswitch -Gaudio \
-d /var/lib/freeswitch \
-s /bin/false \
-e '' \
-c 'FreeSWITCH' \
freeswitch
fi
for x in \
/etc/kazoo/freeswitch \
/etc/kazoo/freeswitch/autoload_configs \
/etc/kazoo/freeswitch/certs \
/etc/kazoo/freeswitch/chatplan \
/etc/kazoo/freeswitch/dialplan \
/etc/kazoo/freeswitch/directory \
/etc/kazoo/freeswitch/scripts \
/etc/kazoo/freeswitch/sip_profiles;
do
mkdir -p $x
chown -R freeswitch:freeswitch $x
chmod -R o-wx,g+u $x
done
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 1
;;
esac
#DEBHELPER#
exit 0

+ 0
- 27
debian/kazoo-configs-freeswitch.postrm View File

@ -1,27 +0,0 @@
#!/bin/sh
set -e
case "$1" in
purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
if [ "$1" = "purge" ]; then
if getent passwd freeswitch >/dev/null; then
userdel freeswitch
fi
if getent group freeswitch >/dev/null; then
groupdel freeswitch
fi
for x in \
/etc/kazoo/freeswitch;
do
rm -rf $x
done
fi
;;
*)
echo "postrm called with unknown argument \`$1'" >&2
exit 1
;;
esac
#DEBHELPER#
exit 0

+ 0
- 12
debian/kazoo-configs.install View File

@ -1,12 +0,0 @@
#### Do not edit! This file is auto-generated from debian/bootstrap.sh.
app.config /etc/kazoo
config.ini /etc/kazoo
vm.args /etc/kazoo
freeswitch /etc/kazoo
kamailio /etc/kazoo
haproxy /etc/kazoo
bigcouch /etc/kazoo
rabbitmq /etc/kazoo

+ 0
- 11
debian/rules View File

@ -1,11 +0,0 @@
#!/usr/bin/make -f
export DH_VERBOSE=1
%:
dh $@
override_dh_auto_build:
override_dh_auto_install:

Loading…
Cancel
Save