search for: tmprepo

Displaying 20 results from an estimated 51 matches for "tmprepo".

Did you mean: tmpreg
2017 Feb 10
0
[PATCH v3 10/10] Add a virt-builder-repository tool
...id = xpath_string_default xpathctx "/libosinfo/os/short-id" "" in + if id <> "" then + ids := id :: !ids + ); + g#close (); + let ids_set = StringSet.of_list(!ids) in + osinfo_ids := Some ids_set; + ids_set + ) + +(* Move files in tmprepo into the repository *) +let do_mv src dest = + let cmd = [ "mv"; src; dest ] in + run_command cmd + +let compress_to file outdir = + info "Copying image to temporary folder ...%!"; + let outimg = outdir // (Filename.basename file) in + let cmd = [ "cp" ] @ + (i...
2017 Jan 03
0
[PATCH 5/5] Add a virt-builder-repository tool
...mdline.repo)) then + error (f_"Repository folder '%s' doesn't exist") cmdline.repo; + + (* Create a temporary folder to work in *) + let tmpdir = Mkdtemp.temp_dir ~base_dir:cmdline.repo "virt-builder-repository." "" in + rmdir_on_exit tmpdir; + + let tmprepo = tmpdir // "repo" in + Unix.mkdir tmprepo 0o700; + + let sigchecker = Sigchecker.create ~gpg:cmdline.gpg + ~check_signature:false + ~gpgkey:No_Key + ~tmpdir:tmpdir in + + let in...
2017 Mar 07
0
[PATCH v4 9/9] Add a virt-builder-repository tool
...let lines = external_command qemuimg_cmd in + let line = String.concat "\n" lines in + let infos = yajl_tree_parse line in + { + format = object_get_string "format" infos; + size = object_get_number "virtual-size" infos + } + +let process_image filename repo tmprepo index interactive sigchecker = + message (f_"Preparing %s") filename; + + let filepath = repo // filename in + let { format = format; size = size } = get_disk_image_info filepath in + let xz_path = compress_to filepath tmprepo in + let checksum = Checksums.compute_checksum "sha5...
2017 Mar 23
0
[PATCH v5 10/10] Add a virt-builder-repository tool
...let lines = external_command qemuimg_cmd in + let line = String.concat "\n" lines in + let infos = yajl_tree_parse line in + { + format = object_get_string "format" infos; + size = object_get_number "virtual-size" infos + } + +let process_image filename repo tmprepo index interactive sigchecker = + message (f_"Preparing %s") filename; + + let filepath = repo // filename in + let { format = format; size = size } = get_disk_image_info filepath in + let xz_path = compress_to filepath tmprepo in + let checksum = Checksums.compute_checksum "sha5...
2017 Apr 12
0
[PATCH v6 10/10] Add a virt-builder-repository tool
..."%s%d" distro major + | _ -> sprintf "%s%d.%d" distro major minor + +let has_entry id arch index = + List.exists ( + fun (item_id, { Index.arch = item_arch }) -> + item_id = id && item_arch = arch + ) index + +let process_image acc_entries filename repo tmprepo index interactive + no_compression sigchecker = + message (f_"Preparing %s") filename; + + let filepath = repo // filename in + let { format = format; size = size } = get_disk_image_info filepath in + let out_path = if no_compression then + filepath + else +...
2017 Jun 19
0
[PATCH v7 9/9] Add a virt-builder-repository tool
...| _ (* Any other combination. *) -> + sprintf "%s%d.%d" distro major minor + +let has_entry id arch index = + List.exists ( + fun (item_id, { Index.arch = item_arch }) -> + item_id = id && item_arch = arch + ) index + +let process_image acc_entries filename repo tmprepo index interactive + no_compression sigchecker = + message (f_"Preparing %s") filename; + + let filepath = repo // filename in + let { format = format; size = size } = get_disk_image_info filepath in + let out_path = + if no_compression then filepath + else compr...
2017 Sep 18
0
[PATCH v9 7/7] New tool: virt-builder-repository
...| _ (* Any other combination. *) -> + sprintf "%s%d.%d" distro major minor + +let has_entry id arch index = + List.exists ( + fun (item_id, { Index.arch = item_arch }) -> + item_id = id && item_arch = arch + ) index + +let process_image acc_entries filename repo tmprepo index interactive + no_compression sigchecker = + message (f_"Preparing %s") filename; + + let filepath = repo // filename in + let { format = format; size = size } = get_disk_image_info filepath in + let out_path = + if no_compression then filepath + else compr...
2017 Oct 05
0
[PATCH v11 6/6] New tool: virt-builder-repository
...| _ (* Any other combination. *) -> + sprintf "%s%d.%d" distro major minor + +let has_entry id arch index = + List.exists ( + fun (item_id, { Index.arch = item_arch }) -> + item_id = id && item_arch = arch + ) index + +let process_image acc_entries filename repo tmprepo index interactive + no_compression sigchecker = + message (f_"Preparing %s") filename; + + let filepath = repo // filename in + let { format = format; size = size } = get_disk_image_info filepath in + let out_path = + if no_compression then filepath + else compr...
2017 Sep 12
0
[PATCH v8 7/7] Add a virt-builder-repository tool
...| _ (* Any other combination. *) -> + sprintf "%s%d.%d" distro major minor + +let has_entry id arch index = + List.exists ( + fun (item_id, { Index.arch = item_arch }) -> + item_id = id && item_arch = arch + ) index + +let process_image acc_entries filename repo tmprepo index interactive + no_compression sigchecker = + message (f_"Preparing %s") filename; + + let filepath = repo // filename in + let { format = format; size = size } = get_disk_image_info filepath in + let out_path = + if no_compression then filepath + else compr...
2017 Nov 13
0
[PATCH v12 3/3] New tool: virt-builder-repository
...s -> s | Index.GuessedArch s -> s in + (string_of_arch a) = (string_of_arch b) + +let has_entry id arch index = + List.exists ( + fun (item_id, { Index.arch = item_arch }) -> + item_id = id && (cmp item_arch arch) + ) index + +let process_image acc_entries filename repo tmprepo index interactive + compression sigchecker = + message (f_"Preparing %s") filename; + + let filepath = repo // filename in + let { format = format; size = size } = get_disk_image_info filepath in + let out_path = + if not compression then filepath + else compres...
2016 Jul 28
3
installing centos 7 32 bit i386 to laptop
On 7/27/2016 9:58 PM, geo.inbox.ignored wrote: > $ sudo yum install NetworkManager-wifi > [sudo] password for geo: > Loaded plugins: aliases, changelog, fastestmirror, ovl, presto, refresh- > : packagekit, security, tmprepo, verify, versionlock > Setting up Install Process > Loading mirror speeds from cached hostfile > * base: mirror.steadfast.net > * epel: mirror.steadfast.net > * extras: mirror.steadfast.net > * updates: mirror.steadfast.net > extras...
2016 Dec 14
3
Problem with yum on CentOS Linux release 7.2.1511 (Core) with 3.10.0-327.36.3.el7.x86_64 kernel
...te properly. I disabled all repos except the BASE to try to simply the problem and still the same problem. Any help would be appreciated. Thanks, Greg Ennis Loaded plugins: aliases, changelog, fastestmirror, langpacks, product- id, search- ??????????????: disabled-repos, subscription-manager, tmprepo, verify, versionlock This system is not registered with Subscription Management. You can use subscription-manager to register. base??????????????????????????????????????????????????????????| 3.6 kB??00:00:00????? (1/2): base/7/x86_64/group_gz?????????????????????????????????| 155 kB??00:00:00?????...
2015 Jul 27
0
wicd problem 3: wicd blocking 1st attempt connection for firefox and yumex
...t connected to a network. Do you want to continue selecting [Yes] continues starting yumex, but i have active repositories. when i run yum cl command; ]$ yum check-update Loaded plugins: aliases, changelog, downloadonly, fastestmirror, presto, : refresh-packagekit, security, tmprepo, verify, versionlock Determining fastest mirrors Could not retrieve mirrorlist http://mirrorlist.centos.org/?release=6& arch=x86_64&repo=os error was 14: PYCURL ERROR 6 - "Couldn't resolve host 'mirrorlist.centos.org'" Error: Cannot find a valid baseurl for r...
2009 Nov 13
2
Yum Skipping filter question
Hi, all : When I run "yum update" command in my laptop , it displayed this : root at foo Desktop]# yum update Loaded plugins: aliases, changelog, fastestmirror, filter-data, keys, kmod, list-data, priorities, protect- : packages, protectbase, security, tmprepo, verify Loading mirror speeds from cached hostfile * addons: mirrors.163.com * base: mirrors.163.com * extras: mirrors.163.com * rpmforge: ftp-stud.fht-esslingen.de * updates: mirrors.163.com Skipping filters plugin, no data 0 packages excluded due to repository protections Skipping security p...
2016 Jul 28
2
installing centos 7 32 bit i386 to laptop
On 7/27/2016 8:51 PM, geo.inbox.ignored wrote: > have you tried the 7 32 bit? no, all my linux servers now are 64 bit, I havent' run a 32 bit system in a long time. if your internet is working over ethernet, you should be able to install what you need via yum, rather than reinstall from different media... yum install NetworkManager-wifi and you should be able to configure wifi
2017 Sep 18
11
[PATCH v9 0/7] virt-builder-repository
Hi there, Diffs to v8: * Remove the regex to increment the revision: Index_parser.get_entry() only handles integers * Fix Pino's comments Cédric Bosdonnat (6): builder: rename docs test script builder: add a template parameter to get_index builder: add Index.write_entry function mllib: add XPath helper xpath_get_nodes() builder: remove useless fish dependency New tool:
2017 Sep 20
6
[PATCH v10 0/6] virt-builder-repository
Hi all, Diff to v9 includes the changes requested by Pino. Cédric Bosdonnat (5): builder: rename docs test script builder: add a template parameter to get_index builder: add Index.write_entry function mllib: add XPath helper xpath_get_nodes() New tool: virt-builder-repository Pino Toscano (1): builder: add simple OCaml osinfo-db reader .gitignore
2017 Jan 03
13
[PATCH 0/5] Introducing virt-builder-repository
Hi all, I wanted to provide an easy way to create or update a virt-builder repository out of a folder of template disk image files. This is what virt-builder-repository aims at. Some of the data are computed from the image file, others are asked the user or extracted from an existing index file. So far, virt-builder-repository doesn't run libguestfs on each image to extract the architecture,
2014 Feb 05
0
CEBA-2014:0138 CentOS 6 yum-utils Update
...c801299aecf4afaff4f33690588605654248b206f091296ddf7699b12c yum-plugin-security-1.1.30-17.el6_5.noarch.rpm d4b8ca15cfa18cbcaee96aaff5fe7b930bfc21e938083f7289e8f0ddaef827c5 yum-plugin-show-leaves-1.1.30-17.el6_5.noarch.rpm d71ad1e69fd030a373c723ed7aff0c3eba710f1649261c6c190dd0221048d415 yum-plugin-tmprepo-1.1.30-17.el6_5.noarch.rpm 3a80ce4aaf014d2fd493799ff07ecea8e43fc643c80b8371d148db8deb241a3e yum-plugin-tsflags-1.1.30-17.el6_5.noarch.rpm 57f1feb436759de01760d536c3f00481377f8a1e6a00b4571dd5a11665105f4a yum-plugin-upgrade-helper-1.1.30-17.el6_5.noarch.rpm 5d41c9e0dee34425f6fc3dd6e6d00a04f9fbfb40b...
2018 Aug 09
0
CESA-2018:2284 Important CentOS 6 yum-utils Security Update
...25e82a8fceeb865739d79621ef5c3d7a29063edf35af9761188cf6a8 yum-plugin-security-1.1.30-42.el6_10.noarch.rpm 28e93077b07e0a2b0d011d87cae99ba6a61369fd15678fd31e9ffbaa32046e56 yum-plugin-show-leaves-1.1.30-42.el6_10.noarch.rpm 9a7f57f4fa32b1b61a0458d0800a18496a4068e6dde6473d8c6705f9ce102162 yum-plugin-tmprepo-1.1.30-42.el6_10.noarch.rpm 5879369debc94ac2b1b715411c457d2ac68546d484588cd2a1de13692e99001a yum-plugin-tsflags-1.1.30-42.el6_10.noarch.rpm 601664907b5f6eb9508c445b1988b9fa708645e40311d3ad4a74e3b3417618bc yum-plugin-upgrade-helper-1.1.30-42.el6_10.noarch.rpm 11f428d2609b08188d2c8674bc434b59a942c0...