b23d4c84c2
This change adds the package k8s-cni-cache-cleanup to StarlingX's Debian build Test Plan: PASS build Debian ISO PASS install AIO-SX Debian ISO PASS Check package k8s-cni-cache-cleanup is present PASS Check presence of script /usr/local/sbin/k8s-cni-cache-cleanup Story: 2009965 Task: 45461 Signed-off-by: Andre Fernando Zanella Kantek <AndreFernandoZanella.Kantek@windriver.com> Change-Id: I277937ad1be326f75c3b5fc01a30e775a7b9ca0a
26 lines
444 B
Makefile
26 lines
444 B
Makefile
#!/usr/bin/make -f
|
|
# Copyright (c) 2022 Wind River Systems, Inc.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
#export DH_VERBOSE = 1
|
|
|
|
DEBIAN_DESTDIR := $(CURDIR)/debian/tmp
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_test:
|
|
echo
|
|
|
|
override_dh_auto_install:
|
|
echo
|
|
|
|
override_dh_install:
|
|
install -d ${DEBIAN_DESTDIR}/usr/local/sbin
|
|
install -m 755 k8s-cni-cache-cleanup ${DEBIAN_DESTDIR}/usr/local/sbin/k8s-cni-cache-cleanup
|
|
dh_install
|
|
|
|
override_dh_usrlocal:
|
|
echo
|