public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
From: Adolf Belka <adolf.belka@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH 17/17] samba: Modification to disable cups for samba build and install
Date: Mon, 14 Oct 2024 18:51:17 +0200	[thread overview]
Message-ID: <20241014165117.15440-17-adolf.belka@ipfire.org> (raw)
In-Reply-To: <20241014165117.15440-1-adolf.belka@ipfire.org>

[-- Attachment #1: Type: text/plain, Size: 4427 bytes --]

- As discussed at IPFire conf call on 7th Oct
- disable cups for the samba configure stage
- Update of rootfiles
- Update of samba.cgi to remove the printing of a printer share into the samba
   configuration file.
- Tested out on vm system. Installed samba with only avahi, perl-Parse-Yapp, perl-JSON
   and wsdd as dependencies. Installed without any problems. Existing share was able
   to be accessed without any problems and a new share was created and was also able
   to be accessed without problems.

Tested-by: Adolf Belka <adolf.belka(a)ipfire.org>
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
 config/rootfiles/packages/aarch64/samba |  1 -
 config/rootfiles/packages/riscv64/samba |  3 +--
 config/rootfiles/packages/x86_64/samba  |  1 -
 html/cgi-bin/samba.cgi                  | 11 +----------
 lfs/samba                               |  6 +++---
 5 files changed, 5 insertions(+), 17 deletions(-)

diff --git a/config/rootfiles/packages/aarch64/samba b/config/rootfiles/packages/aarch64/samba
index cb7407504..b18c92f38 100644
--- a/config/rootfiles/packages/aarch64/samba
+++ b/config/rootfiles/packages/aarch64/samba
@@ -998,7 +998,6 @@ usr/libexec/samba/rpcd_spoolss
 usr/libexec/samba/rpcd_winreg
 usr/libexec/samba/samba-bgqd
 usr/libexec/samba/samba-dcerpcd
-usr/libexec/samba/smbspool_krb5_wrapper
 usr/sbin/eventlogadm
 usr/sbin/nmbd
 usr/sbin/samba-change-password
diff --git a/config/rootfiles/packages/riscv64/samba b/config/rootfiles/packages/riscv64/samba
index b530ea2b2..e040073fb 100644
--- a/config/rootfiles/packages/riscv64/samba
+++ b/config/rootfiles/packages/riscv64/samba
@@ -998,7 +998,6 @@ usr/libexec/samba/rpcd_spoolss
 usr/libexec/samba/rpcd_winreg
 usr/libexec/samba/samba-bgqd
 usr/libexec/samba/samba-dcerpcd
-usr/libexec/samba/smbspool_krb5_wrapper
 usr/sbin/eventlogadm
 usr/sbin/nmbd
 usr/sbin/samba-change-password
@@ -1024,4 +1023,4 @@ var/log/samba
 var/spool/samba
 srv/web/ipfire/cgi-bin/samba.cgi
 var/ipfire/menu.d/EX-samba.menu
-usr/local/bin/sambactrl
\ No newline at end of file
+usr/local/bin/sambactrl
diff --git a/config/rootfiles/packages/x86_64/samba b/config/rootfiles/packages/x86_64/samba
index e720457a3..dc0e2bdc4 100644
--- a/config/rootfiles/packages/x86_64/samba
+++ b/config/rootfiles/packages/x86_64/samba
@@ -998,7 +998,6 @@ usr/libexec/samba/rpcd_spoolss
 usr/libexec/samba/rpcd_winreg
 usr/libexec/samba/samba-bgqd
 usr/libexec/samba/samba-dcerpcd
-usr/libexec/samba/smbspool_krb5_wrapper
 usr/sbin/eventlogadm
 usr/sbin/nmbd
 usr/sbin/samba-change-password
diff --git a/html/cgi-bin/samba.cgi b/html/cgi-bin/samba.cgi
index 5736ef0b8..e67f22541 100644
--- a/html/cgi-bin/samba.cgi
+++ b/html/cgi-bin/samba.cgi
@@ -2,7 +2,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2005-2013  IPFire Team  <info(a)ipfire.org>                     #
+# Copyright (C) 2005-2024  IPFire Team  <info(a)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        #
@@ -785,15 +785,6 @@ if (-e "${General::swroot}/samba/smb.conf.local") {
 	close(LOCAL);
 }
 
-print FILE <<END;
-# Export all printers
-[printers]
-path = /var/spool/samba/
-printable = yes
-
-END
-close FILE;
-
 	&General::system("/usr/local/bin/sambactrl", "smbsafeconf");
 }
 
diff --git a/lfs/samba b/lfs/samba
index 8358264a3..ffffca423 100644
--- a/lfs/samba
+++ b/lfs/samba
@@ -33,9 +33,9 @@ DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = samba
-PAK_VER    = 105
+PAK_VER    = 106
 
-DEPS       = avahi cups perl-Parse-Yapp perl-JSON wsdd
+DEPS       = avahi perl-Parse-Yapp perl-JSON wsdd
 
 SERVICES   = samba
 
@@ -94,7 +94,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 		--with-sendfile-support \
 		--with-winbind \
 		--enable-avahi \
-		--enable-cups \
+		--disable-cups \
 		--enable-fhs \
 		--with-syslog \
 		--without-smb1-server
-- 
2.47.0


      parent reply	other threads:[~2024-10-14 16:51 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-14 16:51 [PATCH 01/17] cups: Removal of cups and associated packages Adolf Belka
2024-10-14 16:51 ` [PATCH 02/17] cups-filters: Removal of cups-filters Adolf Belka
2024-10-14 16:51 ` [PATCH 03/17] cups-pdf: Removal of cups-pdf Adolf Belka
2024-10-14 16:51 ` [PATCH 04/17] epson-inkjet-printer-escpr: Removal of package Adolf Belka
2024-10-14 16:51 ` [PATCH 06/17] ghostscript: " Adolf Belka
2024-10-14 16:51 ` [PATCH 07/17] gutenprint: " Adolf Belka
2024-10-14 16:51 ` [PATCH 08/17] hplip: " Adolf Belka
2024-10-14 16:51 ` [PATCH 09/17] lcms2: " Adolf Belka
2024-10-14 16:51 ` [PATCH 10/17] libtiff: " Adolf Belka
2024-10-14 16:51 ` [PATCH 11/17] openjpeg: " Adolf Belka
2024-10-14 16:51 ` [PATCH 12/17] poppler: " Adolf Belka
2024-10-14 16:51 ` [PATCH 13/17] poppler-data: " Adolf Belka
2024-10-14 16:51 ` [PATCH 14/17] qpdf: " Adolf Belka
2024-10-14 16:51 ` [PATCH 15/17] make.sh: All removed packages removed from make.sh Adolf Belka
2024-10-14 16:51 ` [PATCH 16/17] perl-Imager: Removal of all tiff related lines in rootfile Adolf Belka
2024-10-14 16:51 ` Adolf Belka [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20241014165117.15440-17-adolf.belka@ipfire.org \
    --to=adolf.belka@ipfire.org \
    --cc=development@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox