From a835f6560c80ad6b1f6aa19147fbbb49a3d8ab57 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Mon, 13 Jul 2026 23:37:06 -0400 Subject: [PATCH] chore: drop support for raspbian Raspbian is a Debian derivative and is already covered by the published Debian packages, so the dedicated raspbian PackageCloud repository is redundant. This stops publishing raspbian packages and drops the raspbian runtime special-case. --- Makefile | 1 - sshcommand | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 687580d..b2d879d 100644 --- a/Makefile +++ b/Makefile @@ -135,7 +135,6 @@ release-packagecloud-deb: build/deb/$(NAME)_$(VERSION)_all.deb package_cloud push $(PACKAGECLOUD_REPOSITORY)/debian/bullseye build/deb/$(NAME)_$(VERSION)_all.deb package_cloud push $(PACKAGECLOUD_REPOSITORY)/debian/bookworm build/deb/$(NAME)_$(VERSION)_all.deb package_cloud push $(PACKAGECLOUD_REPOSITORY)/debian/trixie build/deb/$(NAME)_$(VERSION)_all.deb - package_cloud push $(PACKAGECLOUD_REPOSITORY)/raspbian/bullseye build/deb/$(NAME)_$(VERSION)_all.deb validate: test mkdir -p validation diff --git a/sshcommand b/sshcommand index a3d56a4..7f36fb4 100755 --- a/sshcommand +++ b/sshcommand @@ -71,7 +71,7 @@ fn-adduser() { adduser -D -g "" -s /bin/bash "$l_user" passwd -u "$l_user" ;; - debian* | ubuntu | raspbian*) + debian* | ubuntu) adduser --disabled-password --gecos "" "$l_user" ;; arch | amzn)