summaryrefslogtreecommitdiff
path: root/packages/debian
diff options
context:
space:
mode:
Diffstat (limited to 'packages/debian')
-rw-r--r--packages/debian/changelog.in6
-rw-r--r--packages/debian/cloud-init.postinst16
-rw-r--r--packages/debian/cloud-init.preinst20
-rw-r--r--packages/debian/compat1
-rw-r--r--packages/debian/control.in29
-rw-r--r--packages/debian/copyright29
-rw-r--r--packages/debian/dirs6
-rwxr-xr-xpackages/debian/rules.in23
-rw-r--r--packages/debian/watch2
9 files changed, 0 insertions, 132 deletions
diff --git a/packages/debian/changelog.in b/packages/debian/changelog.in
deleted file mode 100644
index c9affe47..00000000
--- a/packages/debian/changelog.in
+++ /dev/null
@@ -1,6 +0,0 @@
-## template:basic
-cloud-init (${version}~bzr${revision}-1) UNRELEASED; urgency=low
-
- * build
-
- -- Scott Moser <smoser@ubuntu.com> Fri, 16 Dec 2011 11:50:25 -0500
diff --git a/packages/debian/cloud-init.postinst b/packages/debian/cloud-init.postinst
deleted file mode 100644
index cdd0466d..00000000
--- a/packages/debian/cloud-init.postinst
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-cleanup_lp1552999() {
- local oldver="$1" last_bad_ver="0.7.7~bzr1178"
- dpkg --compare-versions "$oldver" le "$last_bad_ver" || return 0
- local edir="/etc/systemd/system/multi-user.target.wants"
- rm -f "$edir/cloud-config.service" "$edir/cloud-final.service" \
- "$edir/cloud-init-local.service" "$edir/cloud-init.service"
-}
-
-
-#DEBHELPER#
-
-if [ "$1" = "configure" ]; then
- oldver="$2"
- cleanup_lp1552999 "$oldver"
-fi
diff --git a/packages/debian/cloud-init.preinst b/packages/debian/cloud-init.preinst
deleted file mode 100644
index 3c2af06d..00000000
--- a/packages/debian/cloud-init.preinst
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-# vi: ts=4 expandtab
-
-cleanup_lp1552999() {
- local oldver="$1" last_bad_ver="0.7.7~bzr1178"
- dpkg --compare-versions "$oldver" le "$last_bad_ver" || return 0
- local hdir="/var/lib/systemd/deb-systemd-helper-enabled"
- hdir="$hdir/multi-user.target.wants"
- local edir="/etc/systemd/system/multi-user.target.wants"
- rm -f "$hdir/cloud-config.service" "$hdir/cloud-final.service" \
- "$hdir/cloud-init-local.service" "$hdir/cloud-init.service"
-}
-
-
-if [ "$1" = "upgrade" ]; then
- oldver="$2"
- cleanup_lp1552999 "$oldver"
-fi
-
-#DEBHELPER#
diff --git a/packages/debian/compat b/packages/debian/compat
deleted file mode 100644
index ec635144..00000000
--- a/packages/debian/compat
+++ /dev/null
@@ -1 +0,0 @@
-9
diff --git a/packages/debian/control.in b/packages/debian/control.in
deleted file mode 100644
index b58561e7..00000000
--- a/packages/debian/control.in
+++ /dev/null
@@ -1,29 +0,0 @@
-## template:basic
-Source: cloud-init
-Section: admin
-Priority: optional
-Maintainer: Scott Moser <smoser@ubuntu.com>
-Build-Depends: debhelper (>= 9),
- dh-python,
- dh-systemd,
- iproute2,
- pep8,
- pyflakes,
- python3-pyflakes | pyflakes (<< 1.1.0-2),
- ${python},
- ${test_requires},
- ${requires}
-XS-Python-Version: all
-Standards-Version: 3.9.6
-
-Package: cloud-init
-Architecture: all
-Depends: procps,
- ${python},
- ${misc:Depends},
- ${${python}:Depends}
-Recommends: eatmydata, sudo, software-properties-common, gdisk
-XB-Python-Version: ${python:Versions}
-Description: Init scripts for cloud instances
- Cloud instances need special scripts to run during initialisation
- to retrieve and install ssh keys and to let the user run various scripts.
diff --git a/packages/debian/copyright b/packages/debian/copyright
deleted file mode 100644
index c694f30d..00000000
--- a/packages/debian/copyright
+++ /dev/null
@@ -1,29 +0,0 @@
-Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135
-Name: cloud-init
-Maintainer: Scott Moser <scott.moser@canonical.com>
-Source: https://launchpad.net/cloud-init
-
-This package was debianized by Soren Hansen <soren@ubuntu.com> on
-Thu, 04 Sep 2008 12:49:15 +0200 as ec2-init. It was later renamed to
-cloud-init by Scott Moser <scott.moser@canonical.com>
-
-Upstream Author: Scott Moser <smoser@canonical.com>
- Soren Hansen <soren@canonical.com>
- Chuck Short <chuck.short@canonical.com>
-
-Copyright: 2010, Canonical Ltd.
-License: GPL-3
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License version 3, as
- published by the Free Software Foundation.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
-
- The complete text of the GPL version 3 can be seen in
- /usr/share/common-licenses/GPL-3.
diff --git a/packages/debian/dirs b/packages/debian/dirs
deleted file mode 100644
index 9a633c60..00000000
--- a/packages/debian/dirs
+++ /dev/null
@@ -1,6 +0,0 @@
-var/lib/cloud
-usr/bin
-etc/init
-usr/share/doc/cloud
-etc/cloud
-lib/udev/rules.d
diff --git a/packages/debian/rules.in b/packages/debian/rules.in
deleted file mode 100755
index cf2dd405..00000000
--- a/packages/debian/rules.in
+++ /dev/null
@@ -1,23 +0,0 @@
-## template:basic
-#!/usr/bin/make -f
-INIT_SYSTEM ?= upstart,systemd
-export PYBUILD_INSTALL_ARGS=--init-system=$(INIT_SYSTEM)
-PYVER ?= python${pyver}
-
-%:
- dh $@ --with $(PYVER),systemd --buildsystem pybuild
-
-override_dh_install:
- dh_install
- install -d debian/cloud-init/etc/rsyslog.d
- cp tools/21-cloudinit.conf debian/cloud-init/etc/rsyslog.d/21-cloudinit.conf
-
-override_dh_auto_test:
-ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))
- http_proxy= make PYVER=${pyver} check
-else
- @echo check disabled by DEB_BUILD_OPTIONS=$(DEB_BUILD_OPTIONS)
-endif
-
-override_dh_systemd_start:
- dh_systemd_start --no-restart-on-upgrade --no-start
diff --git a/packages/debian/watch b/packages/debian/watch
deleted file mode 100644
index 0f7a600b..00000000
--- a/packages/debian/watch
+++ /dev/null
@@ -1,2 +0,0 @@
-version=3
-https://launchpad.net/cloud-init/+download .*/\+download/cloud-init-(.+)\.tar.gz