From 8361fa6b6e167fb5bc2d85757d01ec85ad188ca1 Mon Sep 17 00:00:00 2001 From: James Hillyerd Date: Mon, 5 Nov 2012 09:33:27 -0800 Subject: [PATCH] Dist scripts... - Add files to tarball as root/root - Move redhat-init script to etc/redhat-el6 so it's included in dist tarball --- bin/dist-unix.sh | 2 +- bin/inbucket-redhat-init.sh => etc/redhat-el6/inbucket-init.sh | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename bin/inbucket-redhat-init.sh => etc/redhat-el6/inbucket-init.sh (100%) diff --git a/bin/dist-unix.sh b/bin/dist-unix.sh index 34878ea..a9fb9c8 100755 --- a/bin/dist-unix.sh +++ b/bin/dist-unix.sh @@ -32,7 +32,7 @@ cp -r themes $distdir/themes echo "Tarballing..." tarball="$HOME/$distname.tbz2" cd $tmpdir -tar cjvf $tarball $distname +tar --owner=root --group=root -cjvf $tarball $distname echo "Cleaning up..." if [ "$tmpdir" != "/" ]; then diff --git a/bin/inbucket-redhat-init.sh b/etc/redhat-el6/inbucket-init.sh similarity index 100% rename from bin/inbucket-redhat-init.sh rename to etc/redhat-el6/inbucket-init.sh