Displaying 4 results from an estimated 4 matches for "node_ks".
Did you mean:
node_id
2010 Mar 26
1
Updated patch...
This supercedes the previous patch by incorporating feedback from pmyers
and apevec. The ISO building target is in the recipes Makefile rather
than a separate one.
2010 Mar 29
1
Refactored new patch...
This one incorporates feedback from mburns to default certain values.
2010 Mar 26
0
[PATCH] Moves building ovirt-node-image.iso into the ovirt-node repo.
...+RPMDIR = $$(rpm --eval '%{_rpmdir}')
+RPM_FLAGS = --define "ovirt_cache_dir $(OVIRT_CACHE_DIR)"
+RPM_FLAGS += $(if $(_ovirt_dev),--define "extra_release .$(GIT_RELEASE)")
+NODE_TMP = $(OVIRT_CACHE_DIR)/$(PACKAGE)-$(ARCH)-tmp
+SRC_KS = $(NODE_TMP)/src.ks
+NODE_KS = $(NODE_TMP)/node.ks
+
+all: $(PACKAGE).$(PKG_FMT)
+
+keys:
+ if [ "$(_ovirt_dev)" = 1 -a -f $(AUTH_KEYS) ]; then \
+ cp -va $(AUTH_KEYS) ovirt-authorized_keys ;\
+ fi
+
+no_nscd:
+ if pgrep -xl nscd; then \
+ echo "Please stop nscd" ;\
+ exit 1 ;\
+ fi
+
+SELIN...
2010 Apr 07
1
[PATCH node] Fix defaulting of OVIRT_CACHE_DIR in recipe makefile
...NODE_RECIPE = ovirt-node-recipe.ks
PKG_FMT = iso
PACKAGE = ovirt-node-image
-OVIRT_CACHE_DIR ? =$(HOME)/ovirt-cache
+OVIRT_CACHE_DIR ?= $(HOME)/ovirt-cache
NODE_TMP = $(OVIRT_CACHE_DIR)/$(PACKAGE)-$(ARCH)-tmp
OVIRT_LOCAL_REPO ?= file://$(OVIRT_CACHE_DIR)/ovirt
NODE_KS = $(NODE_TMP)/node.ks
--
1.6.6.1