search for: frugalware

Displaying 20 results from an estimated 63 matches for "frugalware".

2015 Sep 08
1
[PATCH] inspect: recognize the Frugalware distribution
...src/inspect-icon.c | 1 + src/inspect.c | 1 + 6 files changed, 30 insertions(+) diff --git a/generator/actions.ml b/generator/actions.ml index 13c8bc8..2f0ad0b 100644 --- a/generator/actions.ml +++ b/generator/actions.ml @@ -1099,6 +1099,10 @@ FreeBSD. FreeDOS. +=item \"frugalware\" + +Frugalware. + =item \"gentoo\" Gentoo. diff --git a/src/guestfs-internal.h b/src/guestfs-internal.h index 6cf3dad..f0eb28a 100644 --- a/src/guestfs-internal.h +++ b/src/guestfs-internal.h @@ -554,6 +554,7 @@ enum inspect_os_distro { OS_DISTRO_COREOS, OS_DISTRO_ALPINE_L...
2013 Oct 22
3
[PATCH] * supermin support for FrugalWare (pacman-g2)
Hi, (added myself as CC as I'm not subscribed to this MailingList curently) I already sent a pull request via github, but was told that review via ML is preferred. Another patch for libguestfs will follow in a seperate Mail. Greetings Daniel
2013 Oct 21
0
Re: * initial FrugalWare support (#4)
On Mon, Oct 21, 2013 at 12:04:44PM -0700, DeX77 wrote: > This enables initial FrugalWare Support in libguestfs. It is not yet complete, as not all needed packages are yet available. I'd prefer that patches are posted on the mailing list for review, even a preliminary review. You don't need to sign up, but there may be a short delay before you post is approved. Does this need...
2013 Oct 23
0
Re: [PATCH] * supermin support for FrugalWare (pacman-g2)
On Tue, Oct 22, 2013 at 08:42:12PM +0200, Daniel Exner wrote: > -dnl For ArchLinux handler. > -AC_CHECK_PROG(PACMAN,[pacman],[pacman],[no]) > +dnl For FrugalWare handler. > +AC_CHECK_PROG(PACMAN_G2,[pacman-g2],[pacman-g2],[no]) > + > +dnl if test "x$pacman_g2" = "xno"; then > +dnl dnl For ArchLinux handler. > +dnl AC_CHECK_PROG(PACMAN,[pacman],[pacman],[no]) > +dnl fi > + This seems to disable the ArchLinux (ie. pac...
2016 Aug 31
1
[PATCH] build: improve distro check
...; /etc/lsb-release 2>&AS_MESSAGE_LOG_FD; then DISTRO=UBUNTU fi -fi -if test -f /etc/arch-release; then +elif test -f /etc/arch-release; then DISTRO=ARCHLINUX -fi -if test -f /etc/SuSE-release; then +elif test -f /etc/SuSE-release; then DISTRO=SUSE -fi -if test -f /etc/frugalware-release; then +elif test -f /etc/frugalware-release; then DISTRO=FRUGALWARE -fi -if test -f /etc/mageia-release; then +elif test -f /etc/mageia-release; then DISTRO=MAGEIA +else +dnl fallback option + DISTRO=REDHAT fi AC_MSG_RESULT([$DISTRO]) AC_SUBST([DISTRO]) -- 2.7.4
2013 Oct 22
1
[PATCH] * initial FrugalWare support
Hi, this patch enables building of the guestfs appliance with most of the correct packages. The missing ones will follow as soon as they are available. Greetings Daniel
2017 Sep 25
2
[PATCH] build: improve and simplify distro detection
...debian_version; then - DISTRO=DEBIAN - if grep -q 'DISTRIB_ID=Ubuntu' /etc/lsb-release 2>&AS_MESSAGE_LOG_FD; then - DISTRO=UBUNTU - fi -elif test -f /etc/arch-release; then - DISTRO=ARCHLINUX -elif test -f /etc/SuSE-release; then - DISTRO=SUSE -elif test -f /etc/frugalware-release; then - DISTRO=FRUGALWARE -elif test -f /etc/mageia-release; then - DISTRO=MAGEIA -else -dnl fallback option - DISTRO=REDHAT -fi -AC_MSG_RESULT([$DISTRO]) +AC_ARG_WITH([distro], + [AS_HELP_STRING([--with-distro="DISTRO_ID"], + [distro ID @<:@defau...
2020 Oct 17
1
[PATCH] Use guestfsd binary to auto-generate library dependencies for appliance
...ifelse(SUSE,1, genisoimage glibc-locale gptfdisk - hivex initviocons iproute2 iputils - libcap2 - libhivex0 - libjansson4 - libselinux1 - libtirpc3 - libyara3 mkisofs ntfsprogs ntfs-3g @@ -167,11 +133,9 @@ ifelse(SUSE,1, systemd vim xz - yara ) ifelse(FRUGALWARE,1, - augeas cryptsetup-luks cdrkit dhclient @@ -179,14 +143,10 @@ ifelse(FRUGALWARE,1, hfsplus iproute2 iputils - jansson kernel - libcap - libtirpc ntfsprogs ntfs-3g openssh - pcre reiserfsprogs systemd vim @@ -197,7 +157,6 @@ ifelse(FRUGALWARE,1, )...
2016 Mar 29
4
[PATCH] appliance: Copy /etc/machine-id from host system into the appliance.
...file into the appliance. --- appliance/hostfiles.in | 1 + 1 file changed, 1 insertion(+) diff --git a/appliance/hostfiles.in b/appliance/hostfiles.in index 8ff53b5..6c581bd 100644 --- a/appliance/hostfiles.in +++ b/appliance/hostfiles.in @@ -13,5 +13,6 @@ dnl SUSE=1 For OpenSUSE. dnl FRUGALWARE=1 For Frugalware. dnl MAGEIA=1 For Mageia. +/etc/machine-id /lib/lsb/* /usr/share/augeas/lenses/*.aug -- 2.7.4
2016 Mar 29
0
Re: [PATCH] appliance: Copy /etc/machine-id from host system into the appliance.
...e/hostfiles.in | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/appliance/hostfiles.in b/appliance/hostfiles.in > index 8ff53b5..6c581bd 100644 > --- a/appliance/hostfiles.in > +++ b/appliance/hostfiles.in > @@ -13,5 +13,6 @@ dnl SUSE=1 For OpenSUSE. > dnl FRUGALWARE=1 For Frugalware. > dnl MAGEIA=1 For Mageia. > > +/etc/machine-id > /lib/lsb/* > /usr/share/augeas/lenses/*.aug > -- > 2.7.4 > > _______________________________________________ > Libguestfs mailing list > Libguestfs@redhat.com > https://www.redhat.com/ma...
2016 Aug 31
0
[PATCH 2/2] Use os-release to detect the distro
...b/src/pacman.ml @@ -24,8 +24,9 @@ open Package_handler let pacman_detect () = Config.pacman <> "no" && Config.fakeroot <> "no" && - (stat "/etc/arch-release").st_kind = S_REG && - Config.pacman_g2 = "no" (* not Frugalware with pacman-g2 *) + (Os_release.get_id () = "arch" || + ((stat "/etc/arch-release").st_kind = S_REG && + Config.pacman_g2 = "no")) (* not Frugalware with pacman-g2 *) let settings = ref no_settings diff --git a/src/rpm.ml b/src/rpm.ml index a5d...
2016 May 12
2
[PATCH 1/2] Revert "appliance: init: run ldconfig"
Running ldconfig adds about 100ms to the boot time. I would prefer that we understood which libraries need ldconfig to be run, and fix that. We could also consider running ldconfig in parallel, but since it might be required by just about any binary that the init script runs it's not clear what benefit that gives. This reverts commit 66aa98265dd215dcd4c717e7ef6845fbac859e54. ---
2014 Oct 02
4
[PATCH 0/3] RFC: appliance flavours
Hi, this is a prototype of something I've around for some time. Basically it is about adding new appliances in addition to the main one currently used and kept up-to-date automatically: this way it is possible to create new appliances with extra packages, to be used in specific contexts (like virt-rescue, with more network/recovery tools) without filling the main appliance. It's still
2017 Oct 12
1
[PATCH] daemon: inspection: Add support for NeoKylin (RHBZ#1476081).
...ml b/daemon/inspect_fs_unix.ml index ce48942bd..3b57899cc 100644 --- a/daemon/inspect_fs_unix.ml +++ b/daemon/inspect_fs_unix.ml @@ -53,6 +53,7 @@ let re_minix = PCRE.compile "^(\\d+)\\.(\\d+)(\\.(\\d+))?" let re_openbsd = PCRE.compile "^OpenBSD (\\d+|\\?)\\.(\\d+|\\?)" let re_frugalware = PCRE.compile "Frugalware (\\d+)\\.(\\d+)" let re_pldlinux = PCRE.compile "(\\d+)\\.(\\d+) PLD Linux" +let re_neokylin_version = PCRE.compile "^V(\\d+)Update(\\d+)$" let arch_binaries = [ "/bin/bash"; "/bin/ls"; "/bin/echo"; "...
2016 Aug 31
8
[PATCH 0/2] supermin: use /etc/os-release
Hi, let's make supermin use /etc/os-release as primary source instead of the various release files in /etc; apparently distros (e.g. openSUSE) are starting removing them. Thanks, Pino Toscano (2): Add simple handling of /etc/os-release Use os-release to detect the distro src/Makefile.am | 3 +++ src/dpkg.ml | 3 ++- src/os_release.ml | 78
2018 Feb 12
2
[PATCH] inspect: recognize the Kali Linux distribution (RHBZ#1544227)
...ix.ml b/daemon/inspect_fs_unix.ml index d0323af3f..53c86e878 100644 --- a/daemon/inspect_fs_unix.ml +++ b/daemon/inspect_fs_unix.ml @@ -140,6 +140,7 @@ and distro_of_os_release_id = function | "debian" -> Some DISTRO_DEBIAN | "fedora" -> Some DISTRO_FEDORA | "frugalware" -> Some DISTRO_FRUGALWARE + | "kali" -> Some DISTRO_KALI_LINUX | "mageia" -> Some DISTRO_MAGEIA | "neokylin" -> Some DISTRO_NEOKYLIN | "opensuse" -> Some DISTRO_OPENSUSE diff --git a/daemon/inspect_types.ml b/daemon/inspect_type...
2014 Aug 19
6
[PATCH 0/3] libguestfs: improve OpenSUSE support
Hi, this series for libguestfs improves the support for OpenSUSE. There are couple of changes (in testing-only stuff) needed to help running the tests properly, and an update of the packagelist. Pino Toscano (3): builder: do not use xz --block-size for the test images tests: make the scratch disk used for scratch much larger appliance: initial packagelist for OpenSUSE
2014 Oct 24
1
[PATCH v3] daemon: Remove custom Augeas lenses.
v3: - Don't remove the LVM transform.
2014 Oct 24
1
[PATCH v2] daemon: Remove custom Augeas lenses.
v2 of previous patch, which fixes some missing bits. For now I'm going to go with Pino's RHEL 7.1 patch, since it is at least smaller than this. So I'm sending this to the list just to have it archived for later. Rich.
2016 Nov 09
0
[PATCH v2 1/6] appliance: add yara dependency
...byajl2 + libyara3 linux-image dnl syslinux 'suggests' mtools, but in reality it's a hard dependency: mtools @@ -125,6 +127,7 @@ ifelse(ARCHLINUX,1, vim xz yajl + yara ) ifelse(SUSE,1, @@ -152,6 +155,7 @@ ifelse(SUSE,1, systemd vim xz + yara ) ifelse(FRUGALWARE,1, diff --git a/daemon/Makefile.am b/daemon/Makefile.am index 23f60eb..3a25f43 100644 --- a/daemon/Makefile.am +++ b/daemon/Makefile.am @@ -222,7 +222,8 @@ guestfsd_LDADD = \ $(LIBINTL) \ $(SERVENT_LIB) \ $(PCRE_LIBS) \ - $(TSK_LIBS) + $(TSK_LIBS) \ + $(YARA_LIBS) guestfsd_CPPFLAGS = \ -...