mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-01 16:19:37 +01:00
6 lines
250 B
Plaintext
6 lines
250 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# run the logrotate with user 10000, the state file "/var/lib/logrotate/logrotate.status"
|
||
|
# is specified to avoid the permission error
|
||
|
sudo -u \#10000 -E /usr/sbin/logrotate -s /var/lib/logrotate/logrotate.status /etc/logrotate.conf
|
||
|
exit 0
|