mirror of
https://github.com/void-linux/void-packages.git
synced 2025-10-11 13:05:11 +02:00
10 lines
128 B
Bash
10 lines
128 B
Bash
#!/bin/sh
|
|
#
|
|
|
|
logrotate_cmd=/usr/sbin/logrotate
|
|
|
|
if [ ! -x $logrotate_cmd ]; then
|
|
exit 0
|
|
fi
|
|
|
|
$logrotate_cmd /etc/logrotate.conf
|