diff options
author | ficus <ficus@robocracy.org> | 2012-09-27 17:20:25 +0200 |
---|---|---|
committer | ficus <ficus@robocracy.org> | 2012-09-27 17:23:14 +0200 |
commit | 2b30e84f7f405a6951d486293708e1a2159cdb78 (patch) | |
tree | 1a3d0aae6d2b56c545aa1812d7b75bba1a4a8b14 /freedom-maker | |
parent | 965630efc1231308cac6525bfbe6ea9a2c475410 (diff) | |
download | torouter-2b30e84f7f405a6951d486293708e1a2159cdb78.tar.gz torouter-2b30e84f7f405a6951d486293708e1a2159cdb78.zip |
install config files as root, not torouter user
Diffstat (limited to 'freedom-maker')
-rwxr-xr-x | freedom-maker/buildrootfs.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/freedom-maker/buildrootfs.sh b/freedom-maker/buildrootfs.sh index 9dad31e..7ac69ad 100755 --- a/freedom-maker/buildrootfs.sh +++ b/freedom-maker/buildrootfs.sh @@ -101,9 +101,9 @@ umount $target/var/cache/apt/ # copy! echo "Copying the source directory to the torouter rootfs..." -rsync -av $source/ $target +rsync -av --no-owner --no-group $source/ $target echo "Copying the torouter config directory to the torouter rootfs..." -rsync -av ../configs/ $target +rsync -av --no-owner --no-group ../configs/ $target # add extra packages to the image bin/packages |