summaryrefslogtreecommitdiff
path: root/packages/gce-disk-expand/packaging/debian
diff options
context:
space:
mode:
Diffstat (limited to 'packages/gce-disk-expand/packaging/debian')
-rw-r--r--packages/gce-disk-expand/packaging/debian/changelog18
-rw-r--r--packages/gce-disk-expand/packaging/debian/compat1
-rw-r--r--packages/gce-disk-expand/packaging/debian/control15
-rw-r--r--packages/gce-disk-expand/packaging/debian/copyright27
-rw-r--r--packages/gce-disk-expand/packaging/debian/install2
-rw-r--r--packages/gce-disk-expand/packaging/debian/postinst26
-rwxr-xr-xpackages/gce-disk-expand/packaging/debian/rules4
7 files changed, 0 insertions, 93 deletions
diff --git a/packages/gce-disk-expand/packaging/debian/changelog b/packages/gce-disk-expand/packaging/debian/changelog
deleted file mode 100644
index 1c8e58e..0000000
--- a/packages/gce-disk-expand/packaging/debian/changelog
+++ /dev/null
@@ -1,18 +0,0 @@
-gce-disk-expand (1:20200428.00-g1) stable; urgency=medium
-
- * Fix potential races in disk expand logic with GPT disks.
-
- -- Google Cloud Team <gc-team@google.com> Tue, 28 Apr 2020 10:24:07 -0700
-
-gce-disk-expand (1:20190708.00-g1) stable; urgency=medium
-
- * Update disk expand to fix bugs with GPT.
-
- -- Google Cloud Team <gc-team@google.com> Mon, 08 Jul 2019 10:20:47 -0700
-
-gce-disk-expand (2.0.0-1) stable; urgency=low
-
- * Initial debian package import.
- * Standardize on initramfs scripts for disk resizing.
-
- -- Google Cloud Team <gc-team@google.com> Mon, 26 Nov 2018 12:00:00 -0700
diff --git a/packages/gce-disk-expand/packaging/debian/compat b/packages/gce-disk-expand/packaging/debian/compat
deleted file mode 100644
index ec63514..0000000
--- a/packages/gce-disk-expand/packaging/debian/compat
+++ /dev/null
@@ -1 +0,0 @@
-9
diff --git a/packages/gce-disk-expand/packaging/debian/control b/packages/gce-disk-expand/packaging/debian/control
deleted file mode 100644
index 92f2e1b..0000000
--- a/packages/gce-disk-expand/packaging/debian/control
+++ /dev/null
@@ -1,15 +0,0 @@
-Source: gce-disk-expand
-Section: admin
-Priority: optional
-Maintainer: Google Cloud Team <gc-team@google.com>
-Build-Depends: debhelper (>= 10)
-Standards-Version: 3.9.8
-Homepage: https://github.com/GoogleCloudPlatform/compute-image-packages
-
-Package: gce-disk-expand
-Architecture: all
-Depends: parted,
- gdisk,
- ${misc:Depends}
-Description: Automatically resize the root partition on first boot.
- This package resizes the root partition on first boot using parted.
diff --git a/packages/gce-disk-expand/packaging/debian/copyright b/packages/gce-disk-expand/packaging/debian/copyright
deleted file mode 100644
index 14d05cc..0000000
--- a/packages/gce-disk-expand/packaging/debian/copyright
+++ /dev/null
@@ -1,27 +0,0 @@
-Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
-Upstream-Name: gce-disk-expand
-Upstream-Contact: gc-team@google.com
-
-Files: *
-Copyright: Copyright 2017 Google Inc.
-License: Apache-2.0
-
-Files: debian/*
-Copyright: Copyright 2017 Google Inc.
-License: Apache-2.0
-
-License: Apache-2.0
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- .
- http://www.apache.org/licenses/LICENSE-2.0
- .
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- .
- On Debian systems, the complete text of the Apache version 2.0 license
- can be found in "/usr/share/common-licenses/Apache-2.0".
diff --git a/packages/gce-disk-expand/packaging/debian/install b/packages/gce-disk-expand/packaging/debian/install
deleted file mode 100644
index 976acf1..0000000
--- a/packages/gce-disk-expand/packaging/debian/install
+++ /dev/null
@@ -1,2 +0,0 @@
-src/usr/share/initramfs-tools usr/share/
-src/expandfs-lib.sh usr/share/initramfs-tools/scripts/
diff --git a/packages/gce-disk-expand/packaging/debian/postinst b/packages/gce-disk-expand/packaging/debian/postinst
deleted file mode 100644
index 00f5b1e..0000000
--- a/packages/gce-disk-expand/packaging/debian/postinst
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/sh
-# Copyright 2018 Google Inc. All Rights Reserved.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-#DEBHELPER#
-
-set -e
-
-case "$1" in
- configure)
- if which /usr/sbin/update-initramfs > /dev/null; then
- update-initramfs -u
- fi
- ;;
-esac
diff --git a/packages/gce-disk-expand/packaging/debian/rules b/packages/gce-disk-expand/packaging/debian/rules
deleted file mode 100755
index 2d33f6a..0000000
--- a/packages/gce-disk-expand/packaging/debian/rules
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/usr/bin/make -f
-
-%:
- dh $@