search for: selinux_enforcing

Displaying 7 results from an estimated 7 matches for "selinux_enforcing".

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.
...DE_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 + +SELINUX_ENFORCING=$(shell /usr/sbin/getenforce) +$(NVR).$(PKG_FMT): no_nscd keys + mkdir -p $(NODE_TMP) + mkdir -p $(OVIRT_CACHE_DIR)/yum-$(ARCH) + ( \ + case $(SELINUX_ENFORCING) in \ + Enforcing) sudo /usr/sbin/setenforce Permissive ;; \ + Permissive) ;; \ + *) if grep -q '^selinux --disabled' $(OVI...
2009 Aug 20
3
[PATCH ovirt-node-image] fixes for edit-livecd
Patch set fixes issues with image size increase when using edit-livecd Also address issue with ext4 root fs
2009 Aug 03
0
[PATCH node-image] Fix edit-livecd to re-create ext2 filesystem each time
...1024 count=0 seek=${new_size} + mkfs.ext2 -b 4096 -m 1 -L "ovirt-node-image" -F $output_file + tune2fs -i 0 -c 0 -Odir_index -ouser_xattr,acl $output_file + + echo ">>> Mounting new ext3fs" + mnt "-t ext2 $output_file -o rw,loop" $output_dir + + SELINUX_ENFORCING=$(getenforce) + case $SELINUX_ENFORCING in + Enforcing) setenforce Permissive ;; + Permissive) ;; + *) echo "Do not run $0 with selinux in disabled mode" ; exit 1 ;; + esac + + echo ">>> Copying data from old ext3fs to new ext3fs" + rsyn...
2009 Sep 09
1
oVirt Appliance / Single Machine Install
The following two patches fixes / reimplements the oVirt appliance project, installing the entire oVirt stack including all server and node components on one machine. These patches are intended to be checked out and used to build the appliance rpm, after which it is installed provides the /usr/sbin/ovirt-appliance-ctrl script to install/uninstall the appliance. The first patch merely removes
2009 Oct 14
4
Refactor ovirt-node-image code base for inclusion in Fedora
Main reason for refactor is no ovirt-node-image binary image allowed in fedora. Removed ks files, now in ovirt-node-recipe, which is subpackage of ovirt-node. Removed tools, these are now in ovirt-node-recipe which is subpackage of ovirt-node.