public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH 01/14] collectd: Fix build warning chown: warning: '.' should be ':'
@ 2026-05-25 11:55 Adolf Belka
  2026-05-25 11:55 ` [PATCH 02/14] core203: Ship collectd Adolf Belka
                   ` (12 more replies)
  0 siblings, 13 replies; 14+ messages in thread
From: Adolf Belka @ 2026-05-25 11:55 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

- Replace ownership separator from . to :

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 lfs/collectd | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lfs/collectd b/lfs/collectd
index f7e6ee206..b063bd36f 100644
--- a/lfs/collectd
+++ b/lfs/collectd
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2024  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2026  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -105,7 +105,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 	echo "# Put custom configfiles in this folder" > /etc/collectd.d/info
 	cp -vf $(DIR_SRC)/config/collectd/collectd.* /etc/
 	mv /etc/collectd.vpn /var/ipfire/ovpn/collectd.vpn
-	chown nobody.nobody /var/ipfire/ovpn/collectd.vpn
+	chown nobody:nobody /var/ipfire/ovpn/collectd.vpn
 	# install the collectd 4.x to 5.x migration program
 	install -v -m 755 -o root $(DIR_APP)/contrib/migrate-4-5.px /var/ipfire/collectd-migrate-4-to-5.pl
 	ln -f -s ../var/ipfire/ovpn/collectd.vpn /etc/collectd.vpn
-- 
2.54.0



^ permalink raw reply	[flat|nested] 14+ messages in thread

* [PATCH 02/14] core203: Ship collectd
  2026-05-25 11:55 [PATCH 01/14] collectd: Fix build warning chown: warning: '.' should be ':' Adolf Belka
@ 2026-05-25 11:55 ` Adolf Belka
  2026-05-25 11:55 ` [PATCH 03/14] dma: Fix build warning - chown: warning: '.' should be ':' Adolf Belka
                   ` (11 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Adolf Belka @ 2026-05-25 11:55 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 config/rootfiles/core/203/filelists/collectd | 1 +
 1 file changed, 1 insertion(+)
 create mode 120000 config/rootfiles/core/203/filelists/collectd

diff --git a/config/rootfiles/core/203/filelists/collectd b/config/rootfiles/core/203/filelists/collectd
new file mode 120000
index 000000000..871b32f14
--- /dev/null
+++ b/config/rootfiles/core/203/filelists/collectd
@@ -0,0 +1 @@
+../../../common/collectd
\ No newline at end of file
-- 
2.54.0



^ permalink raw reply	[flat|nested] 14+ messages in thread

* [PATCH 03/14] dma: Fix build warning - chown: warning: '.' should be ':'
  2026-05-25 11:55 [PATCH 01/14] collectd: Fix build warning chown: warning: '.' should be ':' Adolf Belka
  2026-05-25 11:55 ` [PATCH 02/14] core203: Ship collectd Adolf Belka
@ 2026-05-25 11:55 ` Adolf Belka
  2026-05-25 11:55 ` [PATCH 04/14] core203: Ship dma Adolf Belka
                   ` (10 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Adolf Belka @ 2026-05-25 11:55 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

- Replace ownership separator from . to :

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 lfs/dma | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lfs/dma b/lfs/dma
index 9200de290..f56210eb9 100644
--- a/lfs/dma
+++ b/lfs/dma
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2025  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2026  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -80,8 +80,8 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 	cd $(DIR_APP) && make
 	cd $(DIR_APP) && make install mailq-link install-spool-dirs install-etc
 	install -v -m 755 $(DIR_SRC)/config/dma/dma-cleanup-spool /usr/sbin
-	chown -R nobody.nobody /var/ipfire/dma
-	chown nobody.mail /var/ipfire/dma/auth.conf
+	chown -R nobody:nobody /var/ipfire/dma
+	chown nobody:mail /var/ipfire/dma/auth.conf
 	chmod 640 /var/ipfire/dma/auth.conf
 	ln -svf dma /usr/sbin/sendmail.dma
 	/usr/sbin/alternatives --install /usr/sbin/sendmail sendmail /usr/sbin/sendmail.dma 20
-- 
2.54.0



^ permalink raw reply	[flat|nested] 14+ messages in thread

* [PATCH 04/14] core203: Ship dma
  2026-05-25 11:55 [PATCH 01/14] collectd: Fix build warning chown: warning: '.' should be ':' Adolf Belka
  2026-05-25 11:55 ` [PATCH 02/14] core203: Ship collectd Adolf Belka
  2026-05-25 11:55 ` [PATCH 03/14] dma: Fix build warning - chown: warning: '.' should be ':' Adolf Belka
@ 2026-05-25 11:55 ` Adolf Belka
  2026-05-25 11:55 ` [PATCH 05/14] gnump3d: Fix build warning - chown: warning: '.' should be ':' Adolf Belka
                   ` (9 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Adolf Belka @ 2026-05-25 11:55 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 config/rootfiles/core/203/filelists/dma | 1 +
 1 file changed, 1 insertion(+)
 create mode 120000 config/rootfiles/core/203/filelists/dma

diff --git a/config/rootfiles/core/203/filelists/dma b/config/rootfiles/core/203/filelists/dma
new file mode 120000
index 000000000..60f4682da
--- /dev/null
+++ b/config/rootfiles/core/203/filelists/dma
@@ -0,0 +1 @@
+../../../common/dma
\ No newline at end of file
-- 
2.54.0



^ permalink raw reply	[flat|nested] 14+ messages in thread

* [PATCH 05/14] gnump3d: Fix build warning - chown: warning: '.' should be ':'
  2026-05-25 11:55 [PATCH 01/14] collectd: Fix build warning chown: warning: '.' should be ':' Adolf Belka
                   ` (2 preceding siblings ...)
  2026-05-25 11:55 ` [PATCH 04/14] core203: Ship dma Adolf Belka
@ 2026-05-25 11:55 ` Adolf Belka
  2026-05-25 11:55 ` [PATCH 06/14] guardian: " Adolf Belka
                   ` (8 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Adolf Belka @ 2026-05-25 11:55 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

- Replace ownership separator from . to :

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 lfs/gnump3d | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lfs/gnump3d b/lfs/gnump3d
index 292dee9f6..4bd85e557 100644
--- a/lfs/gnump3d
+++ b/lfs/gnump3d
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2023  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2026  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -34,7 +34,7 @@ DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = gnump3d
-PAK_VER    = 10
+PAK_VER    = 11
 
 DEPS       =
 
@@ -92,7 +92,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 	cd $(DIR_APP) && make install
 	mkdir -p /var/mp3
 	echo Folder for music files > /var/mp3/info
-	chown nobody.nobody /var/mp3
+	chown nobody:nobody /var/mp3
 	install -m 644 $(DIR_SRC)/config/gnump3d/gnump3d.conf /etc/gnump3d/
 	ln -sf /usr/bin/gnump3d-index /etc/fcron.daily/gnump3d-index
 
-- 
2.54.0



^ permalink raw reply	[flat|nested] 14+ messages in thread

* [PATCH 06/14] guardian: Fix build warning - chown: warning: '.' should be ':'
  2026-05-25 11:55 [PATCH 01/14] collectd: Fix build warning chown: warning: '.' should be ':' Adolf Belka
                   ` (3 preceding siblings ...)
  2026-05-25 11:55 ` [PATCH 05/14] gnump3d: Fix build warning - chown: warning: '.' should be ':' Adolf Belka
@ 2026-05-25 11:55 ` Adolf Belka
  2026-05-25 11:55 ` [PATCH 07/14] iptraf-ng: " Adolf Belka
                   ` (7 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Adolf Belka @ 2026-05-25 11:55 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

- Replace ownership separator from . to :

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 lfs/guardian | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lfs/guardian b/lfs/guardian
index 6eaa50aac..268cadd1e 100644
--- a/lfs/guardian
+++ b/lfs/guardian
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2022  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2026  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -35,7 +35,7 @@ DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 
 PROG       = guardian
-PAK_VER    = 27
+PAK_VER    = 28
 
 DEPS       = perl-inotify2 perl-Net-IP
 
@@ -94,7 +94,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 
 	# Create config directory and create files.
 	-mkdir -pv /var/ipfire/guardian
-	chown nobody.nobody /var/ipfire/guardian
+	chown nobody:nobody /var/ipfire/guardian
 
 	# Create directory and file for logging.
 	-mkdir -pv /var/log/guardian
-- 
2.54.0



^ permalink raw reply	[flat|nested] 14+ messages in thread

* [PATCH 07/14] iptraf-ng: Fix build warning - chown: warning: '.' should be ':'
  2026-05-25 11:55 [PATCH 01/14] collectd: Fix build warning chown: warning: '.' should be ':' Adolf Belka
                   ` (4 preceding siblings ...)
  2026-05-25 11:55 ` [PATCH 06/14] guardian: " Adolf Belka
@ 2026-05-25 11:55 ` Adolf Belka
  2026-05-25 11:55 ` [PATCH 08/14] pakfire: " Adolf Belka
                   ` (6 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Adolf Belka @ 2026-05-25 11:55 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

- Replace ownership separator from . to :

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 lfs/iptraf-ng | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lfs/iptraf-ng b/lfs/iptraf-ng
index f5e07352d..30d40253e 100644
--- a/lfs/iptraf-ng
+++ b/lfs/iptraf-ng
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2025  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2026  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -34,7 +34,7 @@ DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = iptraf-ng
-PAK_VER    = 5
+PAK_VER    = 6
 
 DEPS       =
 
@@ -90,7 +90,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 	# Directory install
 	-mkdir -vp /var/log/iptraf-ng
 	chmod 750 /var/log/iptraf-ng
-	chown root.root /var/log/iptraf-ng
+	chown root:root /var/log/iptraf-ng
 
 	# Install logrotate
 	install -v -m 644 $(DIR_SRC)/config/iptraf-ng/iptraf-ng.logrotate \
-- 
2.54.0



^ permalink raw reply	[flat|nested] 14+ messages in thread

* [PATCH 08/14] pakfire: Fix build warning - chown: warning: '.' should be ':'
  2026-05-25 11:55 [PATCH 01/14] collectd: Fix build warning chown: warning: '.' should be ':' Adolf Belka
                   ` (5 preceding siblings ...)
  2026-05-25 11:55 ` [PATCH 07/14] iptraf-ng: " Adolf Belka
@ 2026-05-25 11:55 ` Adolf Belka
  2026-05-25 11:55 ` [PATCH 09/14] core203: Ship pakfire Adolf Belka
                   ` (5 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Adolf Belka @ 2026-05-25 11:55 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

- Replace ownership separator from . to :

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 lfs/pakfire | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lfs/pakfire b/lfs/pakfire
index 2e75f7f68..8b9a7f92b 100644
--- a/lfs/pakfire
+++ b/lfs/pakfire
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2025  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2026  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -56,7 +56,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 	sed -e "s/@VERSION@/$(PAKFIRE_VERSION)/g" \
 		< $(DIR_APP)/pakfire.conf \
 		> $(DIR_APP)/etc/pakfire.conf
-	chown root.root $(DIR_APP) -R
+	chown root:root $(DIR_APP) -R
 	chmod 755 $(DIR_APP)/pakfire
 	ln -sf ../../var/log/pakfire /opt/pakfire/logs
 	ln -sf ../../var/cache/pakfire /opt/pakfire/cache
-- 
2.54.0



^ permalink raw reply	[flat|nested] 14+ messages in thread

* [PATCH 09/14] core203: Ship pakfire
  2026-05-25 11:55 [PATCH 01/14] collectd: Fix build warning chown: warning: '.' should be ':' Adolf Belka
                   ` (6 preceding siblings ...)
  2026-05-25 11:55 ` [PATCH 08/14] pakfire: " Adolf Belka
@ 2026-05-25 11:55 ` Adolf Belka
  2026-05-25 11:55 ` [PATCH 10/14] proxy-accounting: Fix build warning - chown: warning: '.' should be ':' Adolf Belka
                   ` (4 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Adolf Belka @ 2026-05-25 11:55 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 config/rootfiles/core/203/filelists/pakfire | 1 +
 1 file changed, 1 insertion(+)
 create mode 120000 config/rootfiles/core/203/filelists/pakfire

diff --git a/config/rootfiles/core/203/filelists/pakfire b/config/rootfiles/core/203/filelists/pakfire
new file mode 120000
index 000000000..d5b1d0d03
--- /dev/null
+++ b/config/rootfiles/core/203/filelists/pakfire
@@ -0,0 +1 @@
+../../../common/pakfire
\ No newline at end of file
-- 
2.54.0



^ permalink raw reply	[flat|nested] 14+ messages in thread

* [PATCH 10/14] proxy-accounting: Fix build warning - chown: warning: '.' should be ':'
  2026-05-25 11:55 [PATCH 01/14] collectd: Fix build warning chown: warning: '.' should be ':' Adolf Belka
                   ` (7 preceding siblings ...)
  2026-05-25 11:55 ` [PATCH 09/14] core203: Ship pakfire Adolf Belka
@ 2026-05-25 11:55 ` Adolf Belka
  2026-05-25 11:55 ` [PATCH 11/14] squid: " Adolf Belka
                   ` (3 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Adolf Belka @ 2026-05-25 11:55 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

- Replace ownership separator from . to :

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 lfs/proxy-accounting | 23 +++++++++++++++++++----
 1 file changed, 19 insertions(+), 4 deletions(-)

diff --git a/lfs/proxy-accounting b/lfs/proxy-accounting
index 125fa127d..2f0430ab9 100644
--- a/lfs/proxy-accounting
+++ b/lfs/proxy-accounting
@@ -1,6 +1,21 @@
 ###############################################################################
-# IPFire.org    - An Open Source Firewall Solution                            #
-# Copyright (C) 2007-2018  IPFire Team  <info@ipfire.org>                     #
+#                                                                             #
+# IPFire.org - A linux based firewall                                         #
+# Copyright (C) 2007-2026  IPFire Team  <info@ipfire.org>                     #
+#                                                                             #
+# This program is free software: you can redistribute it and/or modify        #
+# it under the terms of the GNU General Public License as published by        #
+# the Free Software Foundation, either version 3 of the License, or           #
+# (at your option) any later version.                                         #
+#                                                                             #
+# This program is distributed in the hope that it will be useful,             #
+# but WITHOUT ANY WARRANTY; without even the implied warranty of              #
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the               #
+# GNU General Public License for more details.                                #
+#                                                                             #
+# You should have received a copy of the GNU General Public License           #
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
 ###############################################################################
 
 ###############################################################################
@@ -17,7 +32,7 @@ THISAPP    = proxy-accounting-$(VER)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = proxy-accounting
-PAK_VER    = 14
+PAK_VER    = 15
 
 DEPS       = perl-File-ReadBackwards
 
@@ -69,7 +84,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 
 #activate hourly logging of proxy logfile
 	ln -sf /usr/local/bin/acct.pl /etc/fcron.hourly/squid-accounting
-	chown -R nobody.nobody /var/ipfire/accounting
+	chown -R nobody:nobody /var/ipfire/accounting
 	@rm -rf $(DIR_APP)
 	@$(POSTBUILD)
 
-- 
2.54.0



^ permalink raw reply	[flat|nested] 14+ messages in thread

* [PATCH 11/14] squid: Fix build warning - chown: warning: '.' should be ':'
  2026-05-25 11:55 [PATCH 01/14] collectd: Fix build warning chown: warning: '.' should be ':' Adolf Belka
                   ` (8 preceding siblings ...)
  2026-05-25 11:55 ` [PATCH 10/14] proxy-accounting: Fix build warning - chown: warning: '.' should be ':' Adolf Belka
@ 2026-05-25 11:55 ` Adolf Belka
  2026-05-25 11:55 ` [PATCH 12/14] stage2: " Adolf Belka
                   ` (2 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Adolf Belka @ 2026-05-25 11:55 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

- Replace ownership separator from . to :

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 lfs/squid | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/lfs/squid b/lfs/squid
index a4de8adb4..0271328ff 100644
--- a/lfs/squid
+++ b/lfs/squid
@@ -172,9 +172,9 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 	chown -R nobody:nobody /var/ipfire/updatexlrator
 	chown -R root:root /var/ipfire/updatexlrator/bin
 	chown root:root /var/ipfire/updatexlrator/updxlrator-lib.pl
-	chown nobody.squid /var/updatecache
-	chown nobody.squid /var/updatecache/download
-	chown nobody.squid /var/updatecache/metadata
+	chown nobody:squid /var/updatecache
+	chown nobody:squid /var/updatecache/download
+	chown nobody:squid /var/updatecache/metadata
 	chmod 775 /var/updatecache
 	chmod 775 /var/updatecache/download
 	chmod 775 /var/updatecache/metadata
@@ -184,7 +184,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 	chown squid:squid /var/log/squid
 	ln -sf /usr/lib/squid /usr/lib/squid/auth
 	cp -f $(DIR_SRC)/config/proxy/proxy.pac /srv/web/ipfire/html/proxy.pac
-	chown nobody.nobody /srv/web/ipfire/html/proxy.pac
+	chown nobody:nobody /srv/web/ipfire/html/proxy.pac
 	ln -sf /srv/web/ipfire/html/proxy.pac /srv/web/ipfire/html/wpad.dat
 
 	# Copy stylesheets for the errorpages
-- 
2.54.0



^ permalink raw reply	[flat|nested] 14+ messages in thread

* [PATCH 12/14] stage2: Fix build warning - chown: warning: '.' should be ':'
  2026-05-25 11:55 [PATCH 01/14] collectd: Fix build warning chown: warning: '.' should be ':' Adolf Belka
                   ` (9 preceding siblings ...)
  2026-05-25 11:55 ` [PATCH 11/14] squid: " Adolf Belka
@ 2026-05-25 11:55 ` Adolf Belka
  2026-05-25 11:55 ` [PATCH 13/14] core203: Ship stage2 Adolf Belka
  2026-05-25 11:55 ` [PATCH 14/14] transmission: Fix build warning - chown: warning: '.' should be ':' Adolf Belka
  12 siblings, 0 replies; 14+ messages in thread
From: Adolf Belka @ 2026-05-25 11:55 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

- Replace ownership separator from . to :

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 lfs/stage2 | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lfs/stage2 b/lfs/stage2
index c5130e961..1cb983e5f 100644
--- a/lfs/stage2
+++ b/lfs/stage2
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2022  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2026  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -131,7 +131,7 @@ endif
 	-mkdir -v /var/{lock,log,mail,spool,empty}
 	-mkdir -pv /var/{opt,cache,lib/misc,local}
 	-mkdir -pv /var/log/{counter,calamaris}
-	chown nobody.nobody /var/log/calamaris
+	chown nobody:nobody /var/log/calamaris
 	touch /var/log/{btmp,lastlog,wtmp}
 	chmod -v 600 /var/log/btmp
 	chgrp -v utmp /var/log/lastlog
-- 
2.54.0



^ permalink raw reply	[flat|nested] 14+ messages in thread

* [PATCH 13/14] core203: Ship stage2
  2026-05-25 11:55 [PATCH 01/14] collectd: Fix build warning chown: warning: '.' should be ':' Adolf Belka
                   ` (10 preceding siblings ...)
  2026-05-25 11:55 ` [PATCH 12/14] stage2: " Adolf Belka
@ 2026-05-25 11:55 ` Adolf Belka
  2026-05-25 11:55 ` [PATCH 14/14] transmission: Fix build warning - chown: warning: '.' should be ':' Adolf Belka
  12 siblings, 0 replies; 14+ messages in thread
From: Adolf Belka @ 2026-05-25 11:55 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 config/rootfiles/core/203/filelists/x86_64/stage2 | 1 +
 1 file changed, 1 insertion(+)
 create mode 120000 config/rootfiles/core/203/filelists/x86_64/stage2

diff --git a/config/rootfiles/core/203/filelists/x86_64/stage2 b/config/rootfiles/core/203/filelists/x86_64/stage2
new file mode 120000
index 000000000..2c9e16caa
--- /dev/null
+++ b/config/rootfiles/core/203/filelists/x86_64/stage2
@@ -0,0 +1 @@
+../../../../common/x86_64/stage2
\ No newline at end of file
-- 
2.54.0



^ permalink raw reply	[flat|nested] 14+ messages in thread

* [PATCH 14/14] transmission: Fix build warning - chown: warning: '.' should be ':'
  2026-05-25 11:55 [PATCH 01/14] collectd: Fix build warning chown: warning: '.' should be ':' Adolf Belka
                   ` (11 preceding siblings ...)
  2026-05-25 11:55 ` [PATCH 13/14] core203: Ship stage2 Adolf Belka
@ 2026-05-25 11:55 ` Adolf Belka
  12 siblings, 0 replies; 14+ messages in thread
From: Adolf Belka @ 2026-05-25 11:55 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

- Replace ownership separator from . to :

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 lfs/transmission | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lfs/transmission b/lfs/transmission
index e93bca069..10e2bf271 100644
--- a/lfs/transmission
+++ b/lfs/transmission
@@ -34,7 +34,7 @@ DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = transmission
-PAK_VER    = 27
+PAK_VER    = 28
 
 DEPS       =
 
@@ -91,7 +91,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 	# Install configuration files.
 	-mkdir -pv /etc/transmission
 	cp -vf $(DIR_SRC)/config/transmission/* /etc/transmission/
-	chown -Rv nobody.nobody /etc/transmission
+	chown -Rv nobody:nobody /etc/transmission
 
 	#install initscripts
 	$(call INSTALL_INITSCRIPTS,$(SERVICES))
-- 
2.54.0



^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2026-05-25 11:56 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-05-25 11:55 [PATCH 01/14] collectd: Fix build warning chown: warning: '.' should be ':' Adolf Belka
2026-05-25 11:55 ` [PATCH 02/14] core203: Ship collectd Adolf Belka
2026-05-25 11:55 ` [PATCH 03/14] dma: Fix build warning - chown: warning: '.' should be ':' Adolf Belka
2026-05-25 11:55 ` [PATCH 04/14] core203: Ship dma Adolf Belka
2026-05-25 11:55 ` [PATCH 05/14] gnump3d: Fix build warning - chown: warning: '.' should be ':' Adolf Belka
2026-05-25 11:55 ` [PATCH 06/14] guardian: " Adolf Belka
2026-05-25 11:55 ` [PATCH 07/14] iptraf-ng: " Adolf Belka
2026-05-25 11:55 ` [PATCH 08/14] pakfire: " Adolf Belka
2026-05-25 11:55 ` [PATCH 09/14] core203: Ship pakfire Adolf Belka
2026-05-25 11:55 ` [PATCH 10/14] proxy-accounting: Fix build warning - chown: warning: '.' should be ':' Adolf Belka
2026-05-25 11:55 ` [PATCH 11/14] squid: " Adolf Belka
2026-05-25 11:55 ` [PATCH 12/14] stage2: " Adolf Belka
2026-05-25 11:55 ` [PATCH 13/14] core203: Ship stage2 Adolf Belka
2026-05-25 11:55 ` [PATCH 14/14] transmission: Fix build warning - chown: warning: '.' should be ':' Adolf Belka

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox