Displaying 3 results from an estimated 3 matches for "ki#".
Did you mean:
ki
2020 Feb 27
2
[PATCH] Update the 5 year logo to 10 year logo
..., 1 deletion(-)
create mode 100644 logo/fish-10yrs.png
create mode 100644 logo/fish-10yrs.svg
create mode 100644 website/fish-10yrs.svg
diff --git a/Makefile.am b/Makefile.am
index 15ff7f873008..4a819726a485 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -234,6 +234,7 @@ EXTRA_DIST = \
libtool-kill-dependency_libs.sh \
logo/fish.svg logo/fish.png \
logo/fish-5yrs.svg logo/fish-5yrs.png \
+ logo/fish-10yrs.svg logo/fish-10yrs.png \
logo/virt-builder.svg \
m4/.gitignore \
ocaml-link.sh \
@@ -255,6 +256,7 @@ EXTRA_DIST = \
website/easytoread.css \
website/feed.css \
website/fis...
2008 Jun 30
4
Rebuild of kernel 2.6.9-67.0.20.EL failure
...modifications.
How did I try it?
Created a (non-root) build environment (not a mock )
Installed the kernel.scr.rpm and did a
rpmbuild -ba --target=`uname -m` kernel-2.6.spec 2> prep-err.log | tee
prep-out.log
The build failed at the end:
Processing files: kernel-xenU-devel-2.6.9-67.0.20.EL
Checking for unpackaged file(s): /usr/lib/rpm/check-files
/home/john/rpmbuild/tmp/kernel-2.6.9-67.0.20.EL-root
RPM build errors:
In my setup rebuilding the 2.6.9-67.0.15.EL kernel went ok
Does anybody knows what I do miss or what is going wrong?
For the curios:
Why to recompile the kernel?
I want...
2009 Jul 23
1
[PATCH server] changes required for fedora rawhide inclusion.
...b
+AGENT_LOCKFILE="${AGENT_LOCKFILE:-/var/lock/subsys/ovirt-agent }"
. /etc/init.d/functions
@@ -20,6 +21,9 @@ start() {
daemon $DAEMON
RETVAL=$?
echo
+ if [ $RETVAL -eq 0 ]; then
+ touch $AGENT_LOCKFILE
+ fi
}
stop() {
@@ -27,6 +31,9 @@ stop() {
killproc ovirt-agent.rb
RETVAL=$?
echo
+ if [ $RETVAL -eq 0 ]; then
+ rm $AGENT_LOCKFILE
+ fi
}
case "$1" in
@@ -40,6 +47,11 @@ case "$1" in
stop
start
;;
+ reload)
+ ;;
+ force-reload)
+ restart
+ ;;
status)
statu...