From fe7087d71578f2ae2d8eeb69e14ebc31bff3867b Mon Sep 17 00:00:00 2001 From: Carlos Rafael Ramirez Date: Tue, 11 Jun 2019 23:54:02 +0200 Subject: [PATCH 1/3] #365 [Pengwin-365] Missing OS release info for npm --- os-release | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/os-release b/os-release index 30bf8d5..cd1a214 100644 --- a/os-release +++ b/os-release @@ -1,6 +1,10 @@ PRETTY_NAME="Pengwin" NAME="Pengwin" +VERSION_ID="10" +VERSION="10 (buster)" ID=debian +ID_LIKE=debian HOME_URL="https://github.com/whitewaterfoundry/Pengwin" SUPPORT_URL="https://github.com/whitewaterfoundry/Pengwin" -BUG_REPORT_URL="https://github.com/whitewaterfoundry/Pengwin" \ No newline at end of file +BUG_REPORT_URL="https://github.com/whitewaterfoundry/Pengwin" +VERSION_CODENAME=buster \ No newline at end of file From 383e9745f5d1ed7dde008f8b23883c07df77934e Mon Sep 17 00:00:00 2001 From: Carlos Rafael Ramirez Date: Wed, 19 Jun 2019 23:59:24 +0200 Subject: [PATCH 2/3] #226 [Pengwin-226] Ping doesn't work as /bin/ping is not SUID --- debian/postinst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/debian/postinst b/debian/postinst index cb05d21..3ebd541 100644 --- a/debian/postinst +++ b/debian/postinst @@ -12,13 +12,13 @@ set -e # # * `abort-remove' # * `abort-deconfigure' `in-favour' -# `removing' +# `removing'FLAGFILE # # for details, see https://www.debian.org/doc/debian-policy/ or # the debian-policy package TMPDIR="/run/dpkg.pengwin-base.inst" -FLAGFILE="/etc/apt/.dist-upgrade" +#FLAGFILE="/etc/apt/.dist-upgrade" case "$1" in configure) if [ -f "${TMPDIR}/profile" ] ; then @@ -55,6 +55,7 @@ case "$1" in chmod 755 /usr/local/bin/cmd-exe chmod 755 /usr/local/bin/legacy_wslupath + chmod u+s "$(which ping)" echo " Done!" ### From 07379452af99bda2c064812951950c9378138683 Mon Sep 17 00:00:00 2001 From: Carlos Rafael Ramirez Date: Thu, 20 Jun 2019 00:00:59 +0200 Subject: [PATCH 3/3] #226 [Pengwin-226] Clean code --- debian/postinst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/postinst b/debian/postinst index 3ebd541..23116fe 100644 --- a/debian/postinst +++ b/debian/postinst @@ -12,7 +12,7 @@ set -e # # * `abort-remove' # * `abort-deconfigure' `in-favour' -# `removing'FLAGFILE +# `removing' # # for details, see https://www.debian.org/doc/debian-policy/ or # the debian-policy package