search for: top_dir

Displaying 11 results from an estimated 11 matches for "top_dir".

2018 Apr 25
9
[PATCH v2 0/9] v2v: -i ova: Handle OVAs containing snapshots.
https://bugzilla.redhat.com/show_bug.cgi?id=1570407 This turned into quite an in-depth refactoring of how we handle OVAs. It also fixes a potential security issue. Rich.
2003 Jun 15
2
selective dirs only
Hi All, Just to get the jist of things, trying to sort 5 diff rsyncs into the same process:) if I want to copy only say 2 dirs and everything under them when use include exclude, I have to define the dir first then the dir/all ? like : rsync -azr host::/top_dir --include "pub/" --include "pub/*" --include "ftp1/" --include "ftp1/*" --exclude "*" /local/top_dir TIA.
2009 Feb 27
2
[PATCH 1/1] OCFS2: anti stale inode for nfs (V5)
changes from v4: 1, let suballoc lock covers the checking of the group. 2, add/correct some log messages. 3, use ocfs2_read_group_descriptor() instead of diry reading the group. Signed-off-by: Wengang Wang <wen.gang.wang at oracle.com> -- dlmglue.c | 45 ++++++++++++++++ dlmglue.h | 2 export.c | 77 +++++++++++++++++++++++++-- inode.c | 24 ++++++++
2015 Nov 16
2
FCGIWrapper
...93 of /etc/httpd/conf/httpd.conf Wrapper /home/currencybooking/fcgi-bin/php5.fcgi cannot be accessed:...enied The line no 393 in /etc/httpd/conf/httpd.conf is FCGIWrapper /home/currencybooking/fcgi-bin/php5.fcgi .php Later I tried to install FCGIWrapper. [root at cbcdev mod_fastcgi-2.4.6]# make top_dir=/usr/lib64/httpd Makefile:12: /usr/lib64/httpd/build/special.mk: No such file or directory make: *** No rule to make target `/usr/lib64/httpd/build/special.mk'. Stop. I am not to able to build the package. Do I need to change the ownership if I copied file from production to Dev? Please help...
2004 Dec 02
7
A possible way to reduce basic questions
Jim Lemon <bitwrit <at> ozemail.com.au> writes: > I have been thinking about how to reduce the number of basic questions that > elicit the ...ahem... robust debate that has occurred about how to answer The traffic on r-help could be reduced by creating a second list where more elementary questions are asked. There may be other ways to partition the universe of questions
2006 Nov 09
0
Apache configuration
...0.tar 4. cd fcgi-2.4.0 5. ./configure 6. make 7. make install 8. cd ../ Install mod_fcgid 1. cd ~ 2. wget http://fastcgi.coremail.cn/mod_fcgid.1.09.tar.gz 3. gunzip mod_fcgid.1.09.tar.gz 4. tar -xvf mod_fcgid.1.09.tar 5. cd mod_fcgid.1.09 6. vi Makefile Change top_dir to: top_dir = /usr/lib/httpd Uncomment #INCLUDES and change to INCLUDES=-I /usr/include/httpd -I /usr/include/apr-0 7. make 8. make install 9. cd ../ Install Ruby 1. cd /etc/yum.repos.d/ 2. wget http://dev.centos.org/centos/4/CentOS-Testing.repo 3. yum --enabler...
2015 Nov 17
0
FCGIWrapper
...d.conf is > FCGIWrapper /home/currencybooking/fcgi-bin/php5.fcgi .php SELinux is going to not let you run executable content out of /home/currencybooking/. I suggest putting it in /var/www/cgi-bin/. > Later I tried to install FCGIWrapper. > > [root at cbcdev mod_fastcgi-2.4.6]# make top_dir=/usr/lib64/httpd > Makefile:12: /usr/lib64/httpd/build/special.mk: No such file or directory > make: *** No rule to make target `/usr/lib64/httpd/build/special.mk'. Stop. > I am not to able to build the package. Why are building it yourself? mod_fcgi is in EPEL. https://fedoraprojec...
2007 Oct 24
3
fastcgi
Hello is there any fastcgi rpm available. I downloaded fastcgi rpm from pbone.net, but it does not contain mod_fastcgi.so what about srpm ? http://rpm.pbone.net/index.php3/stat/4/idpl/612033/com/mod_fastcgi-2.4.0-1.i386.rpm.html thanks for help
2020 Apr 06
0
[v2v PATCH 2/2] Consolidate handling of temporary files/dirs
...pdir // sprintf "diskid.%d" id in (* Create Python scripts for precheck, vmcheck, plugin and create VM. *) diff --git a/v2v/parse_ova.ml b/v2v/parse_ova.ml index 0b939ac4..5c8d349f 100644 --- a/v2v/parse_ova.ml +++ b/v2v/parse_ova.ml @@ -70,11 +70,10 @@ let rec parse_ova ova = let top_dir, ova_type = if is_directory ova then ova, Directory else ( - let tmpdir = - let base_dir = (open_guestfs ())#get_cachedir () in - let t = Mkdtemp.temp_dir ~base_dir "ova." in - rmdir_on_exit t; - t in + let ovatmpdir = + let d = cache...
2013 Jul 26
5
[FEEDBACK] Governance of GlusterFS project
Hello everyone, We are in the process of formalizing the governance model of the GlusterFS project. Historically, the governance of the project has been loosely structured. This is an invitation to all of you to participate in this discussion and provide your feedback and suggestions on how we should evolve a formal model. Feedback from this thread will be considered to the extent possible in
2020 Apr 06
4
[v2v PATCH 1/2] v2v: nbdkit: change base dir for nbdkit sockets/pidfiles
Since this new temporary directory will contain UNIX sockets for communicating with nbdkit, then its path must not be too long. Use the existing directory that libguestfs exposes for this, i.e. sockdir. --- v2v/nbdkit.ml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/v2v/nbdkit.ml b/v2v/nbdkit.ml index 65317f9b..46b20c9d 100644 --- a/v2v/nbdkit.ml +++ b/v2v/nbdkit.ml