diff options
| author | dvs1 | 2024-10-20 10:53:33 +1000 |
|---|---|---|
| committer | dvs1 | 2024-10-20 10:53:33 +1000 |
| commit | 72658b5b29afaead6b9472b2ef6ca78e2504903a (patch) | |
| tree | b3cba7a18c12441dd42f145e7320e9a5e0e58d1b | |
| parent | Debian keyring changed again! Three months since the last one. (diff) | |
| download | apt-panopticon-72658b5b29afaead6b9472b2ef6ca78e2504903a.zip apt-panopticon-72658b5b29afaead6b9472b2ef6ca78e2504903a.tar.gz apt-panopticon-72658b5b29afaead6b9472b2ef6ca78e2504903a.tar.bz2 apt-panopticon-72658b5b29afaead6b9472b2ef6ca78e2504903a.tar.xz | |
chown symlinks, not their destination.
| -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 |
