Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 10 Feb 2025 22:59:11 GMT
From:      Jung-uk Kim <jkim@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 34cdec019cc4 - main - devel/libvirt: Fix a typo in a rc script to correct PROVIDE
Message-ID:  <202502102259.51AMxBcD032735@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch main has been updated by jkim:

URL: https://cgit.FreeBSD.org/ports/commit/?id=34cdec019cc4ec4f88416594a47a8111344849ce

commit 34cdec019cc4ec4f88416594a47a8111344849ce
Author:     Jung-uk Kim <jkim@FreeBSD.org>
AuthorDate: 2025-02-10 22:55:33 +0000
Commit:     Jung-uk Kim <jkim@FreeBSD.org>
CommitDate: 2025-02-10 22:55:33 +0000

    devel/libvirt: Fix a typo in a rc script to correct PROVIDE
    
    There is a typo in PROVIDE line in virtlogd.  This causes an error when
    we run libvirtd service, i.e.,
    
    rcorder: requirement `virtlogd' in file `/usr/local/etc/rc.d/libvirtd' has no providers.
    
    PR:             284630
    Approved by:    novel (maintainer)
---
 devel/libvirt/Makefile          | 1 +
 devel/libvirt/files/virtlogd.in | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/devel/libvirt/Makefile b/devel/libvirt/Makefile
index 28d8437807e2..f08719141a66 100644
--- a/devel/libvirt/Makefile
+++ b/devel/libvirt/Makefile
@@ -1,5 +1,6 @@
 PORTNAME=	libvirt
 DISTVERSION=	11.0.0
+PORTREVISION=	1
 CATEGORIES=	devel
 MASTER_SITES=	http://libvirt.org/sources/ \
 		ftp://libvirt.org/libvirt/
diff --git a/devel/libvirt/files/virtlogd.in b/devel/libvirt/files/virtlogd.in
index 380d55b9fddf..15cab4c38f92 100644
--- a/devel/libvirt/files/virtlogd.in
+++ b/devel/libvirt/files/virtlogd.in
@@ -1,6 +1,6 @@
 #!/bin/sh
 
-# PROVIDE: virlogd
+# PROVIDE: virtlogd
 # REQUIRE: LOGIN
 # KEYWORD: shutdown
 #


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202502102259.51AMxBcD032735>