Server IP : 85.214.239.14 / Your IP : 18.226.248.77 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /var/lib/dpkg/info/ |
Upload File : |
#!/bin/sh set -e crondir="/var/spool/cron" action="$1" if [ "$action" != configure ]; then exit 0 fi # Add group for crontabs getent group crontab > /dev/null 2>&1 || addgroup --system crontab # Fixup crontab , directory and files for new group 'crontab'. # Can't use dpkg-statoverride for this because it doesn't cooperate nicely # with cron alternatives such as bcron if [ -d $crondir/crontabs ] ; then chown root:crontab $crondir/crontabs chmod 1730 $crondir/crontabs # This used to be done conditionally. For versions prior to "3.0pl1-81" # It has been disabled to suit cron alternative such as bcron. cd $crondir/crontabs set +e # Iterate over each entry in the spool directory, perform some sanity # checks (see CVE-2017-9525), and chown/chgroup the crontabs for tab_name in * do [ "$tab_name" = "*" ] && continue tab_links=`stat -c '%h' "$tab_name"` tab_owner=`stat -c '%U' "$tab_name"` if [ ! -f "$tab_name" ] then echo "Warning: $tab_name is not a regular file!" continue elif [ "$tab_links" -ne 1 ] then echo "Warning: $tab_name has more than one hard link!" continue elif [ "$tab_owner" != "$tab_name" ] then echo "Warning: $tab_name name differs from owner $tab_owner!" continue fi chown "$tab_owner:crontab" "$tab_name" chmod 600 "$tab_name" done set -e fi