search for: unpersist

Displaying 19 results from an estimated 19 matches for "unpersist".

Did you mean: persist
2010 Mar 23
1
[PATCH] Ensures that persist and unpersist work with relative paths.
...]; then - printf "Directory already persisted: $p\n" + if [ -d $filename ]; then + if [ -d /config$filename ]; then + printf "Directory already persisted: ${filename}\n" printf "You need to unpersist its child directories and/or files and try again.\n" persist_it=false fi @@ -478,34 +479,32 @@ ovirt_store_config() { # if it's a file then make sure it's not already # persisted - if [ -f $p ]; then -...
2010 Jan 18
0
[PATCH] Fixed unpersisting directories and persisting directories that contain persisted files.
...# refresh the file in rootfs if it was mounted over - cp -a /config$f $f + if [ -d $f ]; then + cp -ar /config/$f/* $f if [ $? -ne 0 ]; then - printf " Failed to unpersist %s\n" $f + printf " Failed to unpersist ${f}\n" + exit 1 else - printf " %s successully unpersisted\n" $f + printf " $f successfully unp...
2009 Jul 21
1
[PATCH node] updated unpersist prompts bz512539
...,8 +508,16 @@ remove_config() { if [ -f /config$f ]; then # refresh the file in rootfs if it was mounted over cp -a /config$f $f + if [ $? -ne 0 ]; then + printf " Failed to unpersist %s\n" $f + rc=1 + else + printf " %s successully unpersisted\n" $f + fi fi fi + else + printf " %s is not in persis...
2010 Mar 23
1
Resend of one patch, new to follow on...
The first patch in this set was submitted in January but never ACK'd. The following three are follow on patches to fix other issues that have come up.
2010 Feb 23
1
More complete patch...
This patch supercedes the previous one by moving the functionality for relocating files into the make system.
2006 Mar 08
4
order.products << product w/out persisting
Hi, I have a one-to-many relationship. I want to be able to add objects to the collection w/out persisting them. How do I do this? The only thing I can''t think of is to use a transaction and roll it back. In other words - I want to do this: o = Order.find(1) p = Product.find(1) o.products << p # but don''t persist this I assume I''m just missing something
2009 Aug 11
1
[PATCH node] Added support for remote logging with rsyslog-gssapi to node. NOTE: Needs selinux to be set to permissive (setenforce 0) to work.
...dex 0374f07..5201a79 100644 --- a/Makefile.am +++ b/Makefile.am @@ -46,6 +46,7 @@ EXTRA_DIST = \ scripts/ovirt-functions \ scripts/ovirt-install-node-stateful \ scripts/ovirt-install-node-stateless \ + scripts/ovirt-managed-rsyslog \ scripts/persist \ scripts/unpersist \ scripts/ovirt-post \ diff --git a/ovirt-node.spec.in b/ovirt-node.spec.in index d88a5b2..85d77ba 100644 --- a/ovirt-node.spec.in +++ b/ovirt-node.spec.in @@ -36,6 +36,7 @@ Requires: krb5-workstation Requires: bash Requires: chkconfig Requires: bi...
2010 Oct 22
0
[PATCH node] First draft of replacing some of the ovirt-config-* scripts with python equivalents.
...is a directory + # that it's not already persisted + if os.path.isdir(filename): + if os.path.isdir("/config/" + filename): + log("Directory already persisted: ${filename}\n") + log("You need to unpersist its child directories and/or files and try again.\n") + persist_it=false + + # if it's a file then make sure it's not already + # persisted + if os.path.isfile(filename): + if os.path.isfile("/config/" + filen...
2009 Jun 18
1
[PATCH node] Users can view log files on the node. bz#506289
...node-stateless %{buildroot}%{_sbindir} %{__install} -D -m0755 scripts/ovirt-uninstall-node-stateful %{buildroot}%{_sbindir} +%{__install} -D -m0755 scripts/ovirt-config-view-logs %{buildroot}%{_sbindir} %{__install} -p -m0755 scripts/persist %{buildroot}%{_sbindir} %{__install} -p -m0755 scripts/unpersist %{buildroot}%{_sbindir} %{__install} -p -m0755 ovirt-identify-node/ovirt-identify-node %{buildroot}%{_sbindir} @@ -227,6 +228,7 @@ ln -s ovirt-release %{buildroot}/etc/system-release %{__ln_s} ../..%{_sbindir}/ovirt-config-networking %{buildroot}%{_sysconfdir}/ovirt-config-setup.d/"15_Networ...
2009 Jul 10
2
[PATCH: node 0/3] replace ovirt-identify-node with matahari
This patchset removes ovirt-identify-node and ovirt-listen awake. It adds startup script support for the matahari qmf agent, which takes over the responsibility for communicating node hardware capabilities to the ovirt-server. On the server side, host-browser has had its node identification functionality replaced by a new script, host-register, which is what interfaces with the matahari qmf agent
2009 Jul 08
1
[PATCH: ovirt-identify-node replacement 0/4] ovirt node patch to replace ovirt-identify-node with matahari qmf agent
The purpose of this patch is to add support for the matahari qmf agent package (http://git.et.redhat.com/?p=matahari.git;a=summary) to the node. The following actions are taken: 1. Deprecate ovirt-identify-node and ovirt-listen-awake by removing them from the autotools scripts, the rpm spec and the node startup scripts. 2. Remove ovirt-listen-awake and ovirt-identify-node completely. 3. Add
2010 Feb 10
1
RFC: First pass at making the node generic...
I'm looking for feedback on this first patch. The node has been pushed towards a more generic boot process. With this patch the node can now boot up and execute a few specifically-named scripts that reside in /etc/node.d/ at key points during the startup. After this goes upstream, the next step will be to define in more detail the remote interfaces for the "managed" runtime
2009 Oct 14
8
Refactor ovirt-node code base for inclusion in Fedora
Main reason for refactor is no ovirt-node-image binary image allowed in fedora. Moves tools and kickstart files form ovirt-node-image to subpackage ovirt-node-recipe. Removes old sub packages form ovirt-node, stateless, logos, selinux. Modifies init scripts to meet Fedora packaging guidelines: added status, reload, and lockfile, rhbz: 514221 Added License file.
2009 Aug 31
1
Fixed patch...
This version of the patch includes feedback from jboggs at redhat.com, including fixes to the BuildRequires and Requires in the spec file.
2009 Sep 11
1
Text-based node administration tool
This patch obsoletes any previous ones. This is an upstream candidate, so I'm looking for feedback so we can push this and start using it.
2009 Sep 14
1
Bugfixes...
This version fixes a few bugs found by jboggs. It also includes some logging facilities that need to be fleshed out more.
2009 Sep 16
1
Final push candidate for nodeadmin tool...
This patch is ready for pushing upstream.
2009 Sep 16
1
Replacement that includes utils.py
The previous patch was missing this file. Resending.
2009 Jul 31
2
RFC: This patch is not being submitted for ACK...
...just looking for some feedback on the direction I'm going. The code won't get all the way to the define stage since I'm in the middle of retrofitting it to use virtinst instead of a home spun node definition.