Search Criteria
Package Details: clustershell 1.9.2-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/clustershell.git (read-only, click to copy) |
---|---|
Package Base: | clustershell |
Description: | Python framework for efficient cluster administration |
Upstream URL: | http://cea-hpc.github.io/clustershell/ |
Licenses: | LGPL |
Submitter: | mat_ptah |
Maintainer: | mat_ptah (hcartiaux) |
Last Packager: | hcartiaux |
Votes: | 3 |
Popularity: | 0.000713 |
First Submitted: | 2015-11-19 20:03 (UTC) |
Last Updated: | 2023-12-01 13:41 (UTC) |
Dependencies (5)
- python (python37AUR, python311AUR, python310AUR)
- python (python37AUR, python311AUR, python310AUR) (make)
- python-setuptools (make)
- openssh (openssh-gitAUR, openssh-dotconfigAUR, openssh-dotconfig-binAUR, openssh-selinuxAUR, openssh-hpn-shimAUR, openssh-gssapiAUR) (optional) – Secure SHell client to connect to distant machines,
- vim (neovim-drop-inAUR, neovim-symlinksAUR, vim-cli-gitAUR, gvim-wayland-lilydjwg-gitAUR, vim-gitAUR, gvim-gtk2AUR, gvim) (optional) – Vi Improved
Latest Comments
wallun commented on 2023-12-04 20:24 (UTC)
1.9.2 works well. Thanks for this version.
I was thinking that maybe the example files should be moved to
/usr/share/doc/clustershell
. And as this is not the same location that the official documentation, we could write a wiki page about this change.What do you reckon?
hcartiaux commented on 2023-12-01 13:43 (UTC)
Updated to 1.9.2.
I had a look at the RPM spec files from Fedora to see how they manage the config files and tried to reproduce.
wallun commented on 2023-11-28 10:17 (UTC) (edited on 2023-11-28 10:21 (UTC) by wallun)
Wrong file location
Hi,
Running
yay -Ql clustershell
returns these lines:On the clustershell documentation, the files are supposed to be in
/etc/clustershell
.As only clustershell seems to have files in
/usr/etc
. I feel like it's a minor packaging issue.omgold commented on 2023-09-24 08:01 (UTC)
Since recently the configs in /etc/ aren't really working anymore it seems clush prefers the one under /usr/etc.
I think the right thing to do is to delete these. Patch for PKGBUILD:
--- PKGBUILD.orig 2023-09-24 09:55:37.019973720 +0200 +++ PKGBUILD 2023-09-24 09:56:03.696648190 +0200 @@ -14,7 +14,7 @@ provides=() conflicts=() replaces=() -backup=() +backup=(etc/clustershell/{clush,groups}.conf) options=() install= changelog=ChangeLog @@ -33,6 +33,7 @@ # config files install -d ${pkgdir}/etc/clustershell install -p -m 0644 conf/*.conf ${pkgdir}/etc/${pkgname}/ + rm -r ${pkgdir}/usr/etc