[00:05] boy 24.04 server sure acts weird. I'm installing some stuff via apt and its multiple minute timeouts on things like ipp-usb.service is a disabled or a static unit, not starting it. [00:07] Jun 13 18:06:09 ubuntu systemd[1]: Reloading finished in 61519 ms. [00:07] guess it didn't like the timezone being changed? idk [00:08] its acting normally again === chris14_ is now known as chris14 [04:14] a package in main can't recommend a package in universe, right? how about suggesting it? [05:37] ahasenack: heck, that was.. hackish (/me looking at dbbefcf538bfd3d) :) [05:38] ahasenack: at this point I think it's better to split them by driver, each driver in its own package, - the way how eg redhat does it.. Or just drop gluster entirely :) [05:44] ahasenack: if I knew about that stuff, I'd definitely import the changes and used them as a base for further refinements in that area, it's easier to do that in debian than when importing into ubuntu [06:36] ahasenack: I suggest we merge some things to debian to have some syncronisation point, so to say - for both samba and qemu, - and work from there. I wont make package-rearrangement changes for now. Next I suggest creating separate -gluster packages and maybe -ceph too (dunno what's up with that one in ubuntu) [07:26] ceph in noble is in a bad state because they decided to use a development version from git in order not to lag behind later, but since then they're fighting with the build chain being broken [07:47] ceph is also 64bit-only these days. Ok. === zareem3 is now known as zareem [11:57] mjt0k: a package in main can suggest a package in universe, that's fine === ahasenack_ is now known as ahasenack [13:21] ahasenack: how about Recommends? [13:21] mjt0k: nope, main cannot recommend universe [13:21] ok [15:58] Hello. Over at work I've got a Ubuntu Server 24.04. It's connected to our Windows domain.. I am going to set up a cronjob to copy a file from a SMB server. Years ago, I might have used `smbclient`.. What should I use today? I can only access the share using a domain user. (I can probably get away with storing the password on disk if need be, it's an application account..) [16:00] I think there is some `smbmount` or `mount.smb` or something, too? But that may be overkill [16:09] sebboh, smbclient still exists, plus mount.cifs. I think there's a way of putting the credentials in a file readable only by root and naming that in the mount options, but I haven't looked at it for a long time [16:21] ok, thank you! [19:55] sebboh, if you're still here, it occured to me how I'd probably do it: put the mount in /etc/fstab and include the "x-systemd.automount' option to have systemd mount the file system when it's used, and optionally the x-systemd.idle-timeout to have it unmounted after the cronjob finishes. [19:56] sebboh, or you could handcraft a mount unit instead of using fstab and systemd-fstab-generator, but I like having all the mount specifications in one file [19:58] sebboh: for a `cifs` mount, you can indeed put the credentials in a root-only file and the use `credentials=/etc/samba/user-creds.secrets` or similar in your `/etc/fstab` options [19:59] I thought it was something like that, thanks for checking [20:42] ah, thank you both!