openvmtools: add release file
Message ID | 1465105854-8642-1-git-send-email-marcel.lorenz@ipfire.org |
---|---|
State | Superseded |
Headers |
Return-Path: <development-bounces@lists.ipfire.org> Received: from mail01.ipfire.org (hedwig.ipfire.org [172.28.1.200]) by web02.ipfire.org (Postfix) with ESMTP id B80F961550 for <patchwork@ipfire.org>; Sun, 5 Jun 2016 07:38:19 +0200 (CEST) Received: from mail01.ipfire.org (localhost [IPv6:::1]) by mail01.ipfire.org (Postfix) with ESMTP id 4C8D51239; Sun, 5 Jun 2016 07:38:19 +0200 (CEST) Received: from mint01.skynet.local (ip5f5b7cdb.dynamic.kabel-deutschland.de [95.91.124.219]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id D161DD6C for <development@lists.ipfire.org>; Sun, 5 Jun 2016 07:38:16 +0200 (CEST) From: Marcel Lorenz <marcel.lorenz@ipfire.org> To: development@lists.ipfire.org Subject: [PATCH] openvmtools: add release file Date: Sun, 5 Jun 2016 07:50:54 +0200 Message-Id: <1465105854-8642-1-git-send-email-marcel.lorenz@ipfire.org> X-Mailer: git-send-email 1.9.1 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: IPFire development talk <development.lists.ipfire.org> List-Unsubscribe: <http://lists.ipfire.org/mailman/options/development>, <mailto:development-request@lists.ipfire.org?subject=unsubscribe> List-Archive: <http://lists.ipfire.org/pipermail/development/> List-Post: <mailto:development@lists.ipfire.org> List-Help: <mailto:development-request@lists.ipfire.org?subject=help> List-Subscribe: <http://lists.ipfire.org/mailman/listinfo/development>, <mailto:development-request@lists.ipfire.org?subject=subscribe> Errors-To: development-bounces@lists.ipfire.org Sender: "Development" <development-bounces@lists.ipfire.org> |
Message
Marcel Lorenz
June 5, 2016, 3:50 p.m. UTC
This patch add a simple release file to disable log spam
The user never see the text in this file
Signed-off-by: Marcel Lorenz <marcel.lorenz@ipfire.org>
---
config/openvmtools/release | 3 +++
config/rootfiles/packages/openvmtools | 1 +
lfs/openvmtools | 3 ++-
3 files changed, 6 insertions(+), 1 deletion(-)
create mode 100644 config/openvmtools/release
Comments
Hi, On Sun, 2016-06-05 at 07:50 +0200, Marcel Lorenz wrote: > This patch add a simple release file to disable log spam > The user never see the text in this file > > Signed-off-by: Marcel Lorenz <marcel.lorenz@ipfire.org> > --- > config/openvmtools/release | 3 +++ > config/rootfiles/packages/openvmtools | 1 + > lfs/openvmtools | 3 ++- > 3 files changed, 6 insertions(+), 1 deletion(-) > create mode 100644 config/openvmtools/release > > diff --git a/config/openvmtools/release b/config/openvmtools/release > new file mode 100644 > index 0000000..ef16ac1 > --- /dev/null > +++ b/config/openvmtools/release > @@ -0,0 +1,3 @@ > +COMMENT="This is needed for open-vm-tools" > +DISTRIB_ID="IPFire" > +DISTRIB_RELEASE="IPFire" This is no better. The LSB does however not specify the content of this file, but there are some other commands that parse it and their output is specified: http://refspecs.linuxfoundation.org/LSB_5.0.0/LSB-Core-generic/LSB-Core-generi c/lsbrelease.html So release should contain the release number of the distribution. "IPFire" is not our release version. > diff --git a/config/rootfiles/packages/openvmtools > b/config/rootfiles/packages/openvmtools > index caeb568..3529272 100644 > --- a/config/rootfiles/packages/openvmtools > +++ b/config/rootfiles/packages/openvmtools > @@ -2,6 +2,7 @@ etc/rc.d/init.d/openvmtools > etc/rc.d/rc0.d/K01openvmtools > etc/rc.d/rc3.d/S60openvmtools > etc/rc.d/rc6.d/K01openvmtools > +etc/release > etc/vmware-tools > etc/vmware-tools/guestproxy-ssl.conf > etc/vmware-tools/poweroff-vm-default > diff --git a/lfs/openvmtools b/lfs/openvmtools > index 044994d..cf64203 100644 > --- a/lfs/openvmtools > +++ b/lfs/openvmtools > @@ -33,7 +33,7 @@ DIR_APP = $(DIR_SRC)/$(THISAPP) > TARGET = $(DIR_INFO)/$(THISAPP) > SUP_ARCH = x86_64 i586 > PROG = openvmtools > -PAK_VER = 2 > +PAK_VER = 3 > > DEPS = "" > > @@ -97,5 +97,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) > ln -sf ../init.d/openvmtools /etc/rc.d/rc0.d/K01openvmtools > ln -sf ../init.d/openvmtools /etc/rc.d/rc6.d/K01openvmtools > rm -rvf /usr/etc/pam.d /usr/share/openvmtools > + cp -fv $(DIR_SRC)/config/openvmtools/release /etc/ Please specify the exact destination. It makes the builds less messy. > @rm -rf $(DIR_APP) > @$(POSTBUILD) -Michael