Package Details: ipmicfg 1.34.0-220906

Git Clone URL: https://aur.archlinux.org/ipmicfg.git (read-only, click to copy)
Package Base: ipmicfg
Description: Supermicro IPMI configuration tool
Upstream URL: https://www.supermicro.com/en/solutions/management-software/ipmi-utilities
Licenses: custom:Super Micro Computer
Submitter: quartz64
Maintainer: gsgleason
Last Packager: gsgleason
Votes: 9
Popularity: 0.000000
First Submitted: 2011-11-29 12:04 (UTC)
Last Updated: 2022-10-02 00:02 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 Next › Last »

fryfrog commented on 2020-04-14 15:56 (UTC)

That's all I ever did, except I didn't actually use it! That said, @Ashark commented that they'd change the download or something, so the PKGBUILD probably needs work to deal w/ it.

SamWhited commented on 2020-04-14 15:53 (UTC)

@fryfrog wow, you're quick! Sure thing, I can't promise that I'll always notice when it gets out of date because I also use ipmicfg infrequently (though I do use it consistently), but I'll try to keep it updated quickly if anyone flags it.

fryfrog commented on 2020-04-14 15:51 (UTC)

@SamWhited, thanks for taking it over! :)

fryfrog commented on 2020-04-07 18:54 (UTC)

I don't actually use this package, so I rarely notice when it is out of date and I don't really know how the software works. So I'm gonna orphan it. :)

Ashark commented on 2020-03-29 15:01 (UTC)

In 1.31.0_200205 they seems to combine all the contents into a single file.

nkukard commented on 2018-08-15 05:59 (UTC)

Supermicro recently updated the source to:

ftp://ftp.supermicro.com/utility/IPMICFG/IPMICFG_1.28.0_build.180302.zip

GaryScottMartin commented on 2017-07-28 08:53 (UTC)

Supermicro recently updated the source to: ftp://ftp.supermicro.com/utility/IPMICFG/IPMICFG_1.27.0_build.170620.zip pkgver should be updated to: '1.27.0_build.170620' sha256sums should be updated to: '2d32b644e4eb809b2fd9b45b6cf514fb962fb8d1cd69660a29f82b3e6dcf9056' Gary

ImNtReal commented on 2016-12-16 03:17 (UTC)

Other than /opt/ipmicfg/IPMICFG-Linux.x86_64, that's just how they come. I doubt the .dat files need to be.

freswa commented on 2016-12-16 01:32 (UTC)

Is there any reason why those files are executable by other? /opt/ipmicfg/GenEvt.dat /opt/ipmicfg/MBType.dat /opt/ipmicfg/MRCCode.dat /opt/ipmicfg/SpecEvt1.dat /opt/ipmicfg/SpecEvt2.dat /opt/ipmicfg/SpecEvt3.dat /opt/ipmicfg/SpecEvt4.dat /opt/ipmicfg/SpecEvt5.dat /opt/ipmicfg/IPMICFG-Linux.x86_64

webdawg commented on 2016-10-01 14:35 (UTC) (edited on 2016-10-01 14:35 (UTC) by webdawg)

# Maintainer: Dmitry Nosachev <quartz64@gmail.com> # Contributor: Dmitry Nosachev <quartz64@gmail.com> # Contributor: Web Dawg <webdawg@gmail.com> pkgname=ipmicfg _pkgnamecaps=IPMICFG pkgver=1.24.1_build.160222 pkgrel=1 pkgdesc="Supermicro IPMI configuration tool" makedepends=('unzip') depends=("glibc") arch=('x86_64' 'i686') license=('custom:"Super Micro Computer"') url="http://www.supermicro.com/products/nfo/ipmi.cfm" source=("ftp://ftp.supermicro.com/utility/IPMICFG/${_pkgnamecaps}_${pkgver}.zip") sha256sums=('469aea7f450f35e0e24c57766b44eacfa8ff68ed30c9be42db5eeaf8c796075f') package() { cd ${srcdir}/${_pkgnamecaps}_${pkgver}/Linux mkdir -p ${pkgdir}/opt mkdir -p ${pkgdir}/usr/bin if [ "${CARCH}" = "x86_64" ]; then cp -rf 64bit ${pkgdir}/opt/${pkgname} chmod a+rx ${pkgdir}/opt/${pkgname}/${_pkgnamecaps}-Linux.x86_64 ln -s /opt/${pkgname}/${_pkgnamecaps}-Linux.x86_64 ${pkgdir}/usr/bin/ipmicfg elif [ "${CARCH}" = "i686" ]; then cp -rf 32bit ${pkgdir}/opt/${pkgname} chmod a+rx ${pkgdir}/opt/${pkgname}/${_pkgnamecaps}-Linux.x86 ln -s /opt/${pkgname}/${_pkgnamecaps}-Linux.x86 ${pkgdir}/usr/bin/ipmicfg fi }