- escape % correctly
authorMark Huang <mlhuang@cs.princeton.edu>
Sun, 10 Oct 2004 23:17:51 +0000 (23:17 +0000)
committerMark Huang <mlhuang@cs.princeton.edu>
Sun, 10 Oct 2004 23:17:51 +0000 (23:17 +0000)
vserver-reference.spec

index f3272bf..40328d5 100644 (file)
@@ -102,11 +102,11 @@ EOF
 
 # Prevent all locales from being installed in reference image
 mkdir -p %{installroot}/etc/rpm
-(
-echo "%_install_langs en_US:en"
-echo "%_excludedocs 1"
-echo "%__file_context_path /dev/null"
-) > %{installroot}/etc/rpm/macros
+cat > %{installroot}/etc/rpm/macros <<EOF
+%%_install_langs en_US:en
+%%_excludedocs 1
+%%__file_context_path /dev/null
+EOF
 
 # Initialize RPM database in reference image
 mkdir -p %{installroot}/var/lib/rpm
@@ -170,6 +170,12 @@ if [ -n "$SUDO_UID" ] ; then
     done
 fi
 
+%pre
+# 1 = install, 2 = upgrade/reinstall
+if [ $1 -eq 2 ] ; then
+    chattr -R -i %{vrefdir}
+fi
+
 %post
 # Copy configuration files from host to reference image
 for file in /etc/hosts /etc/resolv.conf /etc/yum.conf ; do