search for: datadir

Displaying 20 results from an estimated 655 matches for "datadir".

2012 Mar 16
7
[PATCH] tools: specify datadir for qemu-xen build to fix firmware loading
# HG changeset patch # User Olaf Hering <olaf@aepfle.de> # Date 1331924173 -3600 # Node ID bf1d5778ffd10858b402068b9473e410791ebd07 # Parent 72e6530b29463f0913af365f5d085d94ff75627c tools: specify datadir for qemu-xen build to fix firmware loading qemu-xen does currently not find the firmware files, such as vgabios-cirrus.bin. The reason is that qemu-xen uses the default prefix /usr/local. Use SHAREDIR/xen/qemu-xen as directory so that it can coexist with qemu-traditional. Signed-off-by: Olaf Heri...
2013 Dec 04
10
MySQL server install with datadir != /var/lib/mysql
Has anybody sucessfully used puppetlabs-mysql (or some other method) to install MySQL-server on Linux with a my.cnf where datadir != /var/lib/mysql ? -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-users+unsubscribe@googlegroups.com. To view this discussion on the web visit...
2002 Aug 14
0
automake 1.6 compatability patch
...123rc-example ogg123sources = audio.c buffer.c callbacks.c \ cfgfile_options.c cmdline_options.c \ file_transport.c format.c http_transport.c \ @@ -16,12 +16,19 @@ if BUILD_OGG123 +mans=$(man_pages) +docs=$(doc_files) +else +mans= +docs=$(doc_files) +endif datadir = @datadir@ localedir = $(datadir)/locale DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@ -bin_PROGRAMS = ogg123 +bin_PROGRAMS = @OGG123@ +EXTRA_PROGRAMS = ogg123 docdir = $(datadir)/doc/$(PACKAGE)-$(VERSION) mandir = @MANDIR@ @@ -36,11 +43,9 @@ ogg123_SOURCES = $(ogg123sources) ma...
2014 Oct 05
0
[PATCH v5 2/7] tests/c-api: Convert the C API tests to use the test harness.
...,19 @@ data." }; style = RString "format", [String "filename"], []; tests = [ InitEmpty, Always, TestResultString ( - [["disk_format"; "../data/blank-disk-1s.raw"]], "raw"), []; + [["disk_format"; "$datadir/blank-disk-1s.raw"]], "raw"), []; InitEmpty, Always, TestResultString ( - [["disk_format"; "../data/blank-disk-1s.qcow2"]], "qcow2"), []; + [["disk_format"; "$datadir/blank-disk-1s.qcow2"]], "qcow2"), []...
2015 Aug 06
0
[PATCH v4 02/17] tests/c-api: Convert the C API tests to use the test harness.
...,19 @@ data." }; style = RString "format", [String "filename"], []; tests = [ InitEmpty, Always, TestResultString ( - [["disk_format"; "../data/blank-disk-1s.raw"]], "raw"), []; + [["disk_format"; "$datadir/blank-disk-1s.raw"]], "raw"), []; InitEmpty, Always, TestResultString ( - [["disk_format"; "../data/blank-disk-1s.qcow2"]], "qcow2"), []; + [["disk_format"; "$datadir/blank-disk-1s.qcow2"]], "qcow2"), []...
2012 May 18
3
Hiera Questions: An array of :datadir: ?
In a posting a few days ago was this hiera.yaml source listing: --------------------------------- :backends: - json :hierarchy: - %{fqdn} - %{lmax_role}_role - %{lmax_env}_server - %{pop}.tradefair - common :json: :datadir: - /etc/puppet/private/ - /etc/puppet/environments/%{environment}/hiera_data_store/ - /etc/puppet/environments/%{environment}/rebirth_data_store/ - /etc/puppet/environments/%{environment}/satellite_system_groups/ --------------------------------- I am curious...
2009 Aug 21
1
trouble with Vista & reading files
...Regards, Mike Below are the calls: ############################################# Below is the call which DOES work, as long as it is called by itself. ############################################## * eTestData <- read.table("C:/Users/<userID>/Documents/R/eTestDataDir/EtestExample.csv",header = TRUE, as.is = TRUE) * ############################################# Below is the call which does NOT work. The problem function call highlighted in *red* Especially strange with this is that there is a call below to ask for all the files...
2014 Oct 22
0
[PATCH] tests: c-api: add $datadir and $databuilddir
Modify "tests" to expand any kind of environment variable than just $srcdir; use $datadir and $databuilddir to point to the files in $srcdir/tests/data and $builddir/tests/data, so it is easier to point at the data for the tests. Most of the work (except the $databuilddir and the integration in the Makefile.am) has been done as part of larger changes by Richard W.M. Jones <rjones@re...
2016 Oct 10
0
[PATCH] p2v: Compress virt-p2v binary and store it in $libdir/virt-p2v (RHBZ#1382275).
...ogram="virt-p2v-make-disk" version="@PACKAGE_VERSION@" -# Deal with stupid autotools libexecdir-not-expandable crap. -prefix="@prefix@" -exec_prefix="@exec_prefix@" -libexecdir="@libexecdir@" - if [ -n "$VIRT_P2V_DATA_DIR" ]; then datadir="$VIRT_P2V_DATA_DIR" - host_libexecdir="$VIRT_P2V_DATA_DIR" + libdir="$VIRT_P2V_DATA_DIR" else datadir="@datadir@/virt-p2v" - host_libexecdir="@libexecdir@" + libdir="@libdir@/virt-p2v" fi # Parse the command line arg...
2011 Jan 03
1
changed datadir
I am trying to configure mysql to use a different datadir than default in order to move this to a larger volume. I have copied all mysql data from /var/lib/mysql to my new volume and ran both chown -R mysql:mysql * and chmod -R 660 * in order to setup correct ownership and rights for the data. It was working for a few days until today upon going into m...
2015 Feb 27
3
[PATCH] v2v: allow configurable location for virtio drivers
...ndows.ml b/v2v/convert_windows.ml index 0cd818a..e966341 100644 --- a/v2v/convert_windows.ml +++ b/v2v/convert_windows.ml @@ -47,7 +47,9 @@ let convert ~verbose ~keep_serial_console (g : G.guestfs) inspect source = try Sys.getenv "VIRT_TOOLS_DATA_DIR" with Not_found -> Config.datadir // "virt-tools" in - let virtio_win_dir = "/usr/share/virtio-win" in + let virtio_win_dir = + try Sys.getenv "VIRTIO_WIN_DIR" + with Not_found -> Config.datadir // "virtio-win" in (* Check if RHEV-APT exists. This is optional. *) let rhe...
2015 Jun 15
0
Re: [PATCH] pod: Use F<> for filenames instead of C<>.
...lename>, > and returns it if known. (and other similar cases here in actions.ml) Considering that "filename" is the name of parameter, shouldn't it be better left with C<>? > @@ -81,9 +81,9 @@ C<VIRT_P2V_DATA_DIR> environment variable. > > =item C<$datadir/issue> > > -=item C<$datadir/launch-virt-p2v.in> > +=item F<$datadir/launch-virt-p2v.in> > > -=item C<$datadir/p2v.service> > +=item F<$datadir/p2v.service> I guess C<$datadir/issue> too? The rest seems fine to me. Thanks, -- Pino Toscano
2007 Oct 29
0
5 commits - data/icons
...esktop.(none)> Date: Sun Oct 28 17:07:47 2007 +0100 Fix distcheck by disting the icons diff --git a/data/icons/16x16/Makefile.am b/data/icons/16x16/Makefile.am index a9625f1..d4dc906 100644 --- a/data/icons/16x16/Makefile.am +++ b/data/icons/16x16/Makefile.am @@ -1,2 +1,5 @@ icondir = $(datadir)/icons/hicolor/16x16/apps icon_DATA = swfdec.png + +EXTRA_DIST = $(icon_DATA) + diff --git a/data/icons/22x22/Makefile.am b/data/icons/22x22/Makefile.am index cae3af2..670b919 100644 --- a/data/icons/22x22/Makefile.am +++ b/data/icons/22x22/Makefile.am @@ -1,2 +1,5 @@ icondir = $(datadir)/icons/h...
2006 Oct 18
2
multiline string continuation
...t. I've seen solution to the command line continuation in the non-string situation (just continute at the new line). However, that doesn't work for strings because the new line character, "\n", is included in the resultant string. For example, if I type the following in a script: datadir=" X:/level1/level2 /level3/level4/ level5/level6" after executing the script, string variable "datadir" becomes "X:/level1/level2\n/level3/level4/\nlevel5/level6" Someone has suggested to use "paste()" for putting pieces of strings together, but I would li...
2019 Apr 23
8
[PATCH 0/7] Make deprecation warnings more prominent
Since there are deprecated APIs, make sure that users notice they are deprecated in more prominent ways than done so far: - using deprecated C functions now warns by default - it is possible to use the C library making sure no deprecated function is ever used - Python/Ruby/Perl scripts now get warning messages (configured according to their own systems) when deprecated functions are used The
2016 Jun 23
2
[PATCH] p2v: kiwi: make sure launch-virt-p2v is executable
...o ensure the executable bit it set for user. --- p2v/virt-p2v-make-kiwi.in | 1 + 1 file changed, 1 insertion(+) diff --git a/p2v/virt-p2v-make-kiwi.in b/p2v/virt-p2v-make-kiwi.in index e493bd4..3506e9b 100644 --- a/p2v/virt-p2v-make-kiwi.in +++ b/p2v/virt-p2v-make-kiwi.in @@ -190,6 +190,7 @@ cp $datadir/issue $output/root/etc/issue mkdir -p $output/root/usr/bin cp $datadir/launch-virt-p2v $output/root/usr/bin +chmod 0755 $output/root/usr/bin/launch-virt-p2v mkdir -p $output/root/$libexecdir cp $host_libexecdir/virt-p2v $output/root/$libexecdir -- 2.6.6
2012 Jul 17
3
NA instead of time stamp
I was wondering why I get <NA> instead of the timestamp in the following. Thanks. > dataDir <- file.path(wd) > localRaw <- read.csv(file.path(dataDir,"LOCAL.csv"), as.is=T,stringsAsFactors = FALSE) > localRaw[1:2,] Year Month Day hour minute second Temp1mab Temp7mab Temp14mab Salinity1mab 1 2009 10 5 0 0 0 11.288 13.675 13.743 33.513...
2013 Jul 25
5
Heria, Facts, and Puppet
So something doesn''t look right for me when running puppet apply -e ''include ...'' for looking heria via facter fact. I have hiera configure as this, :backends: - yaml :hierarchy: - common - ''%{env_name}'' :yaml: :datadir: /var/lib/hiera/data and, a file envXX.yaml store in the datadir, and I can run *hiera xyz env_name=envXX* to get the the value of abc associate with xyz. Yet, if I export the value variable env_name by *export FACTER_env_name=*envXX, and run: *puppet apply -e ''include my_module * pu...
2004 Jan 21
0
Summary: Changing workspace from within an R session
...d on the comments of responders to my original post. For those interested here is the little function, works like a charm. Note that "options()$Current.Dir" gets setup at startup, note also that the name of all my temp. objects start by "ttt". "chdir" <- function(datadir, default.path = '/actuaria/jeg002/') { # Author : G?rald Jean, based on ideas from different people on the R-users mailing # list. # Date : January 21, 2004 # Purpose : will delete all objects starting with "ttt*" from directory # currently at position 1...
2005 Mar 04
0
[PATCH] minor Cygwin documentation fix
....15 README --- README 9 Jul 2004 17:45:27 -0000 1.15 +++ README 4 Mar 2005 15:06:34 -0000 @@ -195,27 +195,36 @@ configure are used for the Cygwin binary --prefix=/usr \ --sysconfdir=/etc \ - --libexecdir='$(sbindir)' \ + --libexecdir='${sbindir}' \ --localstatedir=/var \ - --datadir='$(prefix)/share' \ - --mandir='$(datadir)/man' \ + --datadir='${prefix}/share' \ + --mandir='${datadir}/man' \ + --infodir='${datadir}/info' --with-tcp-wrappers If you want to create a Cygwin package, equivalent to the one in the Cygwin binary distribu...