search for: pisi

Displaying 20 results from an estimated 32 matches for "pisi".

Did you mean: pasi
2009 Sep 18
4
Autofs and Fedora 11
Hi! I'm having trouble accessing Samba shares via autofs. Let me begin by saying that I can access the samba shares directly using smbclient without any trouble. For example: smbclient //Matsa/Pisi works fine. I first started out by copying a config line from an older system (redhat 7) that has in its auto.misc: (all on one line, of course) pisi -fstype=smb,guest,uid=501,gid=100,username=guest,fmask=666,dmask=777 ://Matsa/Pisi On my current system this does not work: # cd /misc/pis...
2007 Jan 10
2
[PATCH] the address of ''symbols_addresses'' will always evaluate as ''true''
Hi; Attached patch adds "-Wno-always-true" CFLAGS into xen/arch/powerpc/Rules.mk and xen/arch/x86/Rules.mk, else compiling xen with latest gcc-4.2.0 snapshot fails, patch is against current xen-3.0.4-testing repo; make[3]: Entering directory `/var/pisi/xen-3.0.4.1-3/work/xen-3.0.4-testing.hg/xen/common'' gcc -O2 -fomit-frame-pointer -m32 -march=i686 -DNDEBUG -std=gnu99 -Wall -Wstrict-prototypes -Wno-unused-value -Wdeclaration-after-statement -nostdinc -fno-builtin -fno-common -fno-strict-aliasing -iwithprefix include -Werror -Wno-pointer...
2016 May 24
3
[PATCH 1/3] inspect: recognize the Void Linux distribution
Since Void Linux provides only an /etc/os-release with no VERSION_ID field, then special-case it to avoid that the os-release parsing ignore it. This provides basic distro identification, and icon. --- generator/actions.ml | 4 ++++ inspector/virt-inspector.rng | 1 + src/guestfs-internal.h | 1 + src/inspect-fs-unix.c | 14 ++++++++++++-- src/inspect-fs.c |
2015 Aug 12
0
[PATCH 2/2] inspect: support the APK package manager and its format
...tions.ml index 26cc0da..d0d6a21 100644 --- a/generator/actions.ml +++ b/generator/actions.ml @@ -1782,7 +1782,7 @@ package format I<or> if the operating system does not have a real packaging system (eg. Windows). Possible strings include: -C<rpm>, C<deb>, C<ebuild>, C<pisi>, C<pacman>, C<pkgsrc>. +C<rpm>, C<deb>, C<ebuild>, C<pisi>, C<pacman>, C<pkgsrc>, C<apk>. Future versions of libguestfs may return other strings. Please read L<guestfs(3)/INSPECTION> for more details." }; @@ -1804,7 +1804,7 @@...
2015 Aug 04
1
[PATCH] customize: Make dnf upgrade to the latest versions of packages.
...0644 --- a/customize/customize_run.ml +++ b/customize/customize_run.ml @@ -123,7 +123,7 @@ exec >>%s 2>&1 apt-get $apt_opts upgrade " | "dnf" -> - sprintf "dnf -y update" + sprintf "dnf -y --best upgrade" | "pisi" -> sprintf "pisi upgrade" | "pacman" -> -- 2.5.0
2016 May 24
0
[PATCH 3/3] customize: add support for the xbps package manager
--- customize/customize_run.ml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/customize/customize_run.ml b/customize/customize_run.ml index 4b3e13c..c9d9d7d 100644 --- a/customize/customize_run.ml +++ b/customize/customize_run.ml @@ -114,6 +114,7 @@ exec >>%s 2>&1 | "pisi" -> sprintf "pisi it %s" quoted_args | "pacman" -> sprintf "pacman -S %s" quoted_args | "urpmi" -> sprintf "urpmi %s" quoted_args + | "xbps" -> sprintf "xbps-install -Sy %s" quoted_args | &...
2016 Jul 21
1
[PATCH] customize: use --noconfirm when installing Arch Linux packages
...un.ml b/customize/customize_run.ml index 6f0d615..3e759a2 100644 --- a/customize/customize_run.ml +++ b/customize/customize_run.ml @@ -117,7 +117,7 @@ exec >>%s 2>&1 " quoted_args | "dnf" -> sprintf "dnf -y install %s" quoted_args | "pisi" -> sprintf "pisi it %s" quoted_args - | "pacman" -> sprintf "pacman -S %s" quoted_args + | "pacman" -> sprintf "pacman -S --noconfirm %s" quoted_args | "urpmi" -> sprintf "urpmi %s" quoted_args...
2015 Aug 12
2
[PATCH 1/2] inspect: recognize the Alpine Linux distribution
Just basic identification, name and version. --- generator/actions.ml | 4 ++++ src/guestfs-internal.h | 1 + src/inspect-fs-unix.c | 10 ++++++++++ src/inspect-fs.c | 2 ++ src/inspect-icon.c | 1 + src/inspect.c | 1 + 6 files changed, 19 insertions(+) diff --git a/generator/actions.ml b/generator/actions.ml index 35af981..26cc0da 100644 --- a/generator/actions.ml
2015 Jul 28
4
[PATCH 0/2] Misc fixes
Here are two patches: one fixes the gpg-agent causing unmount to fail after running dnf to install packages. The other ones fixes dhcpcd call in the init program to provide it an interface name. Cédric Bosdonnat (2): appliance init: find NIC name for dhcpcd Make sure gpg-agent is terminated before umount appliance/init | 3 ++- customize/customize_run.ml | 3 ++- 2 files
2015 Jul 28
2
Re: [PATCH 2/2] Make sure gpg-agent is terminated before umount
...2>&1 > apt-get $apt_opts install %s > " quoted_args > | "dnf" -> > - sprintf "dnf -y install %s" quoted_args > + sprintf "dnf -y install %s > + pkill gpg-agent" quoted_args > | "pisi" -> > sprintf "pisi it %s" quoted_args > | "pacman" -> NACK to this patch, as it just sweeps the issue under the carpet. Basically, this is triggered by the following: $ virt-builder fedora-22 --install <whatever> gnupg2 (used to import key...
2016 Jun 07
1
[PATCH] customize: Add --uninstall operation.
...export DEBIAN_FRONTEND=noninteractive + apt_opts='-q -y -o Dpkg::Options::=--force-confnew' + apt-get $apt_opts update + apt-get $apt_opts remove %s + " quoted_args + | "dnf" -> sprintf "dnf -y remove %s" quoted_args + | "pisi" -> sprintf "pisi rm %s" quoted_args + | "pacman" -> sprintf "pacman -R %s" quoted_args + | "urpmi" -> sprintf "urpme %s" quoted_args + | "xbps" -> sprintf "xbps-remove -Sy %s" quoted_args + | &q...
2020 Apr 20
4
[PATCH v2] python: Fix UnicodeError in inspect_list_applications2() (RHBZ#1684004)
...y changing guestfs_int_py_fromstring() and guestfs_int_py_fromstringsize() to decode utf-8 with the "replace" error handler: https://docs.python.org/3/library/codecs.html#error-handlers For example, this will decode PackageKit's description on SLES4 the following way: Backend: pisi S.�a&#287;lar Onur <caglar@pardus.org.tr> Signed-off-by: Sam Eiderman <sameid@google.com> --- python/handle.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/handle.c b/python/handle.c index 2fb8c18f0..427424707 100644 --- a/python/handle.c +...
2015 Jul 28
0
[PATCH 2/2] Make sure gpg-agent is terminated before umount
...l @@ -96,7 +96,8 @@ exec >>%s 2>&1 apt-get $apt_opts install %s " quoted_args | "dnf" -> - sprintf "dnf -y install %s" quoted_args + sprintf "dnf -y install %s + pkill gpg-agent" quoted_args | "pisi" -> sprintf "pisi it %s" quoted_args | "pacman" -> -- 2.1.4
2015 Jul 28
0
Re: [PATCH 2/2] Make sure gpg-agent is terminated before umount
...-get $apt_opts install %s > > " quoted_args > > | "dnf" -> > > - sprintf "dnf -y install %s" quoted_args > > + sprintf "dnf -y install %s > > + pkill gpg-agent" quoted_args > > | "pisi" -> > > sprintf "pisi it %s" quoted_args > > | "pacman" -> > > NACK to this patch, as it just sweeps the issue under the carpet. > > Basically, this is triggered by the following: > $ virt-builder fedora-22 --install <what...
2007 Dec 19
23
3.1.x and 3.2.x releases
Folks, A new release candidate for 3.2.0 has just been checked into the xen-unstable tree. It''s available from staging and will be in the main tree when it has passed internal regression tests. Meanwhile, in preparation for 3.1.3, please let me know if there are any further patches from xen-unstable that should be backported into the 3.1 branch. You can pull the xen-3.1-testing.hg
2020 Apr 20
0
Re: [PATCH v2] python: Fix UnicodeError in inspect_list_applications2() (RHBZ#1684004)
...nd guestfs_int_py_fromstringsize() to decode utf-8 with the "replace" > error handler: > > https://docs.python.org/3/library/codecs.html#error-handlers > > For example, this will decode PackageKit's description on SLES4 the > following way: > > Backend: pisi > S.�a&#287;lar Onur <caglar@pardus.org.tr> > > Signed-off-by: Sam Eiderman <sameid@google.com> > --- > python/handle.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/python/handle.c b/python/handle.c > index 2fb8c1...
2020 Apr 23
0
Re: [PATCH v2] python: Fix UnicodeError in inspect_list_applications2() (RHBZ#1684004)
...; and guestfs_int_py_fromstringsize() to decode utf-8 with the "replace" > error handler: > > https://docs.python.org/3/library/codecs.html#error-handlers > > For example, this will decode PackageKit's description on SLES4 the > following way: > > Backend: pisi > S.�a&#287;lar Onur <caglar@pardus.org.tr> What is the original text? Nir > Signed-off-by: Sam Eiderman <sameid@google.com> > --- > python/handle.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/python/handle.c b/python...
2020 Apr 25
1
Re: [PATCH v2] python: Fix UnicodeError in inspect_list_applications2() (RHBZ#1684004)
...decode utf-8 with the "replace" > > error handler: > > > > https://docs.python.org/3/library/codecs.html#error-handlers > > > > For example, this will decode PackageKit's description on SLES4 the > > following way: > > > > Backend: pisi > > S.�a&#287;lar Onur <caglar@pardus.org.tr> > > What is the original text? > > Nir > > > Signed-off-by: Sam Eiderman <sameid@google.com> > > --- > > python/handle.c | 4 ++-- > > 1 file changed, 2 insertions(+), 2 deletions(-)...
2007 Jan 10
1
strange domU problem
...: 0 xen_major : 3 xen_minor : 0 xen_extra : .4-1 xen_caps : xen-3.0-x86_32 xen_pagesize : 4096 platform_params : virt_start=0xfc000000 xen_changeset : unavailable cc_compiler : Configured with: /var/pisi/gcc-4.2.0-14/work/gcc-4.2-20070102/c cc_compile_by : root cc_compile_domain : cc_compile_date : Wed Jan 10 03:22:58 EET 2007 xend_config_format : 3 # cat /etc/xen/pardus name = "pardus"; memory = 256; kernel = "/boot/kernel-2.6.16.29-5-domU"; disk...
2013 Mar 30
2
[LLVMdev] SolusOS 2 + Clang
Hello, my name is Ikey Doherty. I am the founder of the SolusOS Linux Distribution. With SolusOS 2 we have decided to create our own base from scratch, using the PiSi package manager. After many repository revisions, it soon become apparant that GCC (4.7.2 in this instance) is dog-slow. Out of pure curiosity I attempted to rebuild packages using Clang. Clang had been pulled in as a dependency earlier on (due to mesalib's use of llvm) and I'd paid litt...