diff options
author | dvs1 | 2024-10-20 10:29:25 +1000 |
---|---|---|
committer | dvs1 | 2024-10-20 10:29:25 +1000 |
commit | dfc3d979a5d9046816fe91c4575cf2cce35e975d (patch) | |
tree | 613fc6cac29c113597450af05f751ffd7e81053e /update_apt-panopticon | |
parent | Tweak APT.exe a bit, more reliable return status. (diff) | |
download | apt-panopticon-dfc3d979a5d9046816fe91c4575cf2cce35e975d.zip apt-panopticon-dfc3d979a5d9046816fe91c4575cf2cce35e975d.tar.gz apt-panopticon-dfc3d979a5d9046816fe91c4575cf2cce35e975d.tar.bz2 apt-panopticon-dfc3d979a5d9046816fe91c4575cf2cce35e975d.tar.xz |
chown symlinks, not their destination.
Diffstat (limited to 'update_apt-panopticon')
-rwxr-xr-x | update_apt-panopticon | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/update_apt-panopticon b/update_apt-panopticon index dde18a5..969cc8f 100755 --- a/update_apt-panopticon +++ b/update_apt-panopticon | |||
@@ -6,12 +6,12 @@ PANOPATH="/var/www/html/apt-panopticon" | |||
6 | cd ${PANOPATH}/apt-panopticon_cgp | 6 | cd ${PANOPATH}/apt-panopticon_cgp |
7 | if [ -d .git ] ; then | 7 | if [ -d .git ] ; then |
8 | git pull > /dev/null | 8 | git pull > /dev/null |
9 | chown -R www-data:www-data * | 9 | chown -hR www-data:www-data * |
10 | fi | 10 | fi |
11 | cd ${PANOPATH}/apt-panopticon | 11 | cd ${PANOPATH}/apt-panopticon |
12 | if [ -d .git ] ; then | 12 | if [ -d .git ] ; then |
13 | git pull > /dev/null | 13 | git pull > /dev/null |
14 | chown -R www-data:www-data * | 14 | chown -hR www-data:www-data * |
15 | fi | 15 | fi |
16 | 16 | ||
17 | # Check if the lock file still exists. | 17 | # Check if the lock file still exists. |
@@ -49,7 +49,7 @@ if [ -f apt-panopticon.lock ] ; then | |||
49 | fi | 49 | fi |
50 | rm ../results; ln -s apt-panopticon/results ../results | 50 | rm ../results; ln -s apt-panopticon/results ../results |
51 | 51 | ||
52 | chown -R www-data:www-data * | 52 | chown -hR www-data:www-data * |
53 | 53 | ||
54 | # Clean up any mess left over from THIS failed run. | 54 | # Clean up any mess left over from THIS failed run. |
55 | find results_* -maxdepth 2 ! -name "pkgmaster.devuan.org" -name "*.*" -type d -print0 | xargs -0rt /bin/rm -fr | 55 | find results_* -maxdepth 2 ! -name "pkgmaster.devuan.org" -name "*.*" -type d -print0 | xargs -0rt /bin/rm -fr |