diff options
author | Isaac Yu <isaacyu1@isaacyu1.com> | 2023-04-14 16:48:50 -0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-04-15 07:13:59 +0700 |
commit | f3c966c85ff858b7c7b1ef6da91a5d21cc9cbc53 (patch) | |
tree | 7a8fba0a5df34c1e0c20f0676de792b52d6a081f /system | |
parent | f40275528f93eb4087265d77ed681f74182df22f (diff) |
system/cdemu-daemon: Fix cdemu-daemon udev rule
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system')
-rw-r--r-- | system/cdemu-daemon/cdemu-daemon.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/system/cdemu-daemon/cdemu-daemon.SlackBuild b/system/cdemu-daemon/cdemu-daemon.SlackBuild index c3e7b38db763..f10f98c9da38 100644 --- a/system/cdemu-daemon/cdemu-daemon.SlackBuild +++ b/system/cdemu-daemon/cdemu-daemon.SlackBuild @@ -4,7 +4,7 @@ # Copyright 2008 Niklas "Nille" Åkerström # Copyright 2010-2013 Niels Horn, Rio de Janeiro, RJ, Brazil <niels.horn@gmail.com> -# Copyright 2018-2022 Isaac Yu <isaacyu1@isaacyu1.com> +# Copyright 2018-2023 Isaac Yu <isaacyu1@isaacyu1.com> # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -31,7 +31,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=cdemu-daemon VERSION=${VERSION:-3.2.6} -BUILD=${BUILD:-2} +BUILD=${BUILD:-3} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -124,7 +124,7 @@ cp $CWD/config/cdemu-daemon-dbus.conf \ sed -i 's/group="root"/group="'$GROUP'"/' \ $PKG/etc/dbus-1/system.d/cdemu-daemon-dbus.conf.new mkdir -p $PKG/etc/udev/rules.d -echo 'KERNEL=="vhba_ctl", NAME="%k", MODE="0660", OWNER="root", GROUP="'$GROUP'"' \ +echo 'KERNEL=="vhba_ctl", MODE="0660", OWNER="root", GROUP="'$GROUP'"' \ > $PKG/etc/udev/rules.d/99-vhba.rules.new mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION |