Closed tiotrom closed 3 years ago
Hi @tiotrom
It depends of which backup you're talking about.
/home/yunohost.backup/archives
to be restored. Unless there was any change on that since then, you can't restore a backup which is not in that directory.
But the backups made by archivist aren't moved away from that directory anyway.decrypt_backups.sh
provided by archivist package.I mean with Archivist. I would like a simple backup + restore solution that is UI based. Luckily Archivist has a control panel and I can select some options. So say I select non encrypted backups of yunohost and the apps. No splitting of files. All backups go into yunohost.app/acrhivist/backups. Now I have a bunch of archives (backups) there. Can I simply move them to /home/yunohost.backup/archives and then restore via ynh backup panel? Is that how it works? Meaning they are the same kinds of backups that ynh creates before upgrades/updates?
If that's only about YunoHost backups, whether apps or core, compressed or not, encrypted or not, all your backups are available in your admin panel at domain.tld/yunohost/admin/#/backup/local
Archivist does a standard YunoHost backup, then copy or compress the existing backup to another place. But either way, the original backup is not removed from YunoHost backups. Somehow, if you're just looking for a recurrent automatic backup, it does it. But meanwhile, it will also duplicate the backups to another place.
Ok thanks. I am trying to understand this. Based on your explanation and my tests, Archivist is creating backups in 2 locations. One in its app folder and one in yunohost backups folder. I can see the backups in the ynh backups panel. This is great, but I have a few more questions:
And, archivist isn't designed to just create recurrent backups for YunoHost. That's just a missing feature of YunoHost...
ynh_core_backup
.
And for each app you want, you'll have appname_backup
.You can backup only the core, only some apps, or both, that's up to you. Anyway, a backup of the core doesn't contains the apps.
If you decide to not backup anymore an app or the core, YunoHost won't delete the previous backup you have though. But Archivist will on its own directory, as well as on any recipients.
I am starting to get a grip of this. Thanks!
Btw, if I have 10 wordpress installs it will rename the backups as wordpress_1 and so forth?
Archivist will make a copy in its app folder, then another copy to yunohost backups, then yet another one to the remote server via rsync.
Actually, YunoHost backup are the original backup, then you'll have a copy in archivist directory. If you choose to not compress it, otherwise you'll have the compressed version of the backup into that directory. Then a copy into the remote server, which is quite the purpose anyway. Yet I understand your idea of getting rid of the local copy if you don't compress your backups.
It could be tried with a symbolic link instead of a real copy. May worth a test. But it means also you'll never compress your backups and keep the .tar all the way. For my backups, compressed backups are 3 times smaller !
Are you using the config-panel or the actions panel ? Lastly the config-panel was broken... (And still broken for me...)
If you have 10 wordpress, each one of them get an ID with a number at the end. wordpress
for the first one, then wordpress__2
, etc. Their backup follow the same pattern. That's a YunoHost behavior.
Am not sure I understood about compressing or not in regards to directories. As I am understanding now, compressed or not, these backups first land in the archivist directory, then are copied into the ynh backup directory. Next time the backup runs, the previous backups from the archivist directory are removed and replaced with the new backups then copied again to the ynh directory. So basically archivist creates the backups on its own folder to then copy them to the ynh backup folder. Correct?
And if I were to directly backup to a remote server, the backups go to the archivist folder like they always do, then get sent to the remote server? Without being sent to the local server. Correct?
Basically: locally: backups -> archivist folder (keep only one copy) -> ynh backup folder (keep infinite copies). remotly: backups -> archivist folder (keep only one copy) -> remote backup folder (keep infinite copies).
Let me know if I got it right please.
I understand now about wp, thanks. And yes I was using the config panel but now I'll use the config folder if it doesn't work properly.
What I am looking for, is a way to make automated backups with inclusion and exclusion rules, locally or to a remote folder. And the ability to only keep a certain amount of backups. Similar to how most backup solutions work. So far Archivist does a good job, but keeping a local copy will double the disk space if you backup everything on the server. Plus it should not keep infinite versions to the backup location.
What if archivist creates backups in chunks and as soon as first chunk is created, it uploads it to the remote server and deletes it from the local storage? This way, the local storage space for creating the backups can be very low since it is only needed for the chunk files.
Ok, so...
You misunderstood the concept I think.
Let me clarify this, or try to do it.
There's 3 different parts in archivist
Those backups may or may not be related to YunoHost, that's a simple backup of directories or files you choose. It may be, for example, a personal script with a bunch of files somewhere in your server.
These backups are compressed or concatenated into archivist backup directory. Backups are updated only if archivist detect a difference since the last backup.
Those are backups of YunoHost core or apps. Archivist does not do the backup itself, it ask YunoHost to do it. So the backups, simple uncompressed tar files since YunoHost 4.1, are put into YunoHost backup folder by YunoHost. That's its process. Once that's done, archivist either compress the tar file into its own directory or make a simple copy of the tar file into its directory. Note that it does not do the opposite, backups are already in YunoHost directory, archivist makes a copy for its own usage.
Why it does that is quite simple, archivist was made with the idea to store the backup in another place. So if the hard drive would fail, you don't loose all your backups. The backup directory of archivist is defined into its config file.
For the sake of this YunoHost package, the backup directory was set in /home/yunohost.app
at the install. Because we can't assume you have another hard drive and you want to use it for that purpose.
When all the backup are done, archivist can send your backups to other places. This is not configured by default, because again, we can't assume you do have another server, a NAS or a simple hard drive somewhere else.
In order to do so, because of the way rsync works and the way the code is made, archivist needs its own directory to send the files to other places. The purpose of doing so is also to not send everything at each run of the script. Only files that are more recent are sent over other places.
Let's take a simple example with my own configuration. I have both simple file backups and YunoHost backups for a total of 45Go, compressed with the xz protocol. It takes 2 days to my server to fully backup and compress everything.
My backups are locally in a separate hard drive. My backups are encrypted with encfs, which operate by mounting the directory into a encrypted second directory. Quite useful since the encryption takes a few second only and the backups aren't duplicated in the process. That's only one directory with 2 access points.
The encrypted version of my backups are send with rsync to another server 400 kilometers away. But, for rsync to work, I need to feed it with a directory with all the files to send. In my case it is the mounted encrypted directory. Rsync compares the current directory with the distant one, removes everything in the distant directory that is not relevant anymore and replace the distant files that are newer in my local backup. At the end, the distant copy is an encrypted mirror of my local backup.
So, each run of the script work only a few hours at the most, in the middle of the night. Depending of what's new since the last one. And only a few Go are sent each time to my other server.
Without a local copy, we may imagine that we can still backup only what's new. Since the checksum is kept aside. But, we couldn't have encryption for the distant copy, and we would have trouble sending only the new files to our distant places. Since rsync wouldn't know what is the status of our local backup.
At the end, working without a local copy would make you lose some features (mainly compression and encryption), and would make harder the copy to distant places. Note that my explanation doesn't mean that it's not possible, but it would need a lot of work to be done.
Also, if it can make sens for YunoHost backup, as there's already a backup made. It doesn't for file backups which are then the only available backup. Which is why I was saying previously that maybe using symbolic links for YunoHost backups may be a solution to try. No compression would be possible though.
About config-panel, I'm surprised it works for you as it seems to be an issue in recent YunoHost version. Anyway, if it works, you can safely use it (otherwise I'm sorry because I did that part too !), at the end using the config-panel or the flat config file is the same. But some configs aren't available from the config-panel.
With everything said, I'm not sure I did answer your questions !? If not don't hesitate to ask for more details.
Ah ok I understand now. So, in my case (interested in ynh backups only), Archivist simply triggers the default ynh backups. That's good to know. Wouldn't it be possible, to then not store these backups in the Archivist folder? Just store them in the ynh backup.
Also, is it possible to tell ynh to only keep X amount of backups and delete the rest? Else if it backups daily, it will add up to a lot of backups.
If you're looking for a way to just trigger YunoHost backup, as said before, archivist is not designed to just do that. That would be a core feature, but it's missing...
Yet, I can have a look to symbolic link instead of tar copy. Not sure it would work, but it worth a try.
As explained before, if you use archivist to create daily backups, each backup will be removed then recreated, so you won't have multiple backups for the same app or for the core.
Ok now I really understand that I think :). So daily backups means it creates backup X today, and when it creates it again tomorrow it replaces it. Correct? So each day there is a new backup but it only keeps 1 copy.
And yes symlinks would be a great idea so that it wont duplicate the backups.
Correct? So each day there is a new backup but it only keeps 1 copy.
Exactly, backup are not incremental, there's only one backup and it's replaced if archivist detect a modification in the files.
I'll have a look to the symbolic links matter as soon as I can. I think it may be of interest for servers without a lot of storage, especially since the original backups aren't compressed anymore.
Gotcha! The only main issue I see is the duplication of backups as said previously. For example one of our server has 200GB and some 100GB of data. I won't be able to back that in this fashion. I'd need triple the disk space. I will keep on using Archivist and test it. But are you aware of any incremental ynh backup solution? And thanks again!
Maybe borg will offers incremental backup, I don't really now about it. Not fond of it.
But anyway for now, YunoHost backups are not incremental, all data are concatenated into a tar file and that's all. At this point there's nothing archivist can do about it.
But if you have 100Gb of data from YunoHost apps, it would probably be better to not backup the data with the app, as it will make huge tar files each time, and use the file backups instead. It will split the data in smaller parts, easier to compress and manipulate. At least, that what I do for my Nextcloud, otherwise it may end up with a 9To or so backup just for that app for a 3To HD (I have multiple mount bind into it !).
I see. So if I have nextcloud or say peertube, I should not backup the data since it is huge. But then, if I want to move to another server I would have to grab the data somehow. I've read you can skip the data with Archivist so I'll try that. Also, I have Archivist setup on my ynh install and it indeed does the job, but a major issue that I found: if I have the X and Y applications installed, and after I installed and setup Archivist, then indeed it backs those up. But if after that I install app Z, archivist does not see it and does not back it. Do I have to re-setup Archivist every time I install a new app?
As the config explain, you can run sudo yunohost app list --installed | grep "id: "
to list your apps.
It was planned to add a hook on the creation of app, but it wasn't available on core side at the time I was working on it. Since then, I've stopped working on that part.
But while archivist does not automatically add or remove apps, you can edit the Backup_list.conf
file and add any app you want.
Even if the app provides a config-panel to ease the manipulation of some options, archivist stays a cli app.
Ok yes I've read that in the readme, thanks. But I thought maybe there is an automated way to identify all the installed apps. I think that's a very useful feature, else one has to always tweak the config to add the new apps it wants to be backed-up.
I would be indeed super useful to have a config panel where one can tweak these things.
So right now I'd say there are 2 things that could be improved for Archivist:
So far I like the Archivist and gives me more options than just ynh backups. Which is great!
For the first thing, I will have a look to symbolic links, as it's part of archivist.
For the second one, that would be part of archivist_ynh, this very repository. Unfortunately I'm not working on new features for the package. Actually, I'm not working at all on YunoHost packaging anymore. Except my recent PR which was an old one in which I just added the upgrade to the last version of archivist.
Maybe someone else will take back the packaging of this app, but I'm done sacrificing my sanity.
Oh ok. Sorry to hear that. Does it mean this ynh package is unreliable?
So far it is reliable. I don't know if it will in the future. Which can be said for any YunoHost package by the way...
What sure is that if I'll probably still upgrade the core app and the upstream version on this package, I won't work on any feature on the package side. Yet as I'm using the package myself, I'd like to keep it in a working state as much as you.
Ok thank you very much for your work and the input there. You helped me a lot! Thanks! And if you will ever be able to implement symlinks and to detect apps that are installed on ynh before a backup, that'd be great. In the meantime I'll have to deal with these manually which is fine ;)
@tiotrom
I'm sorry I've totally forgot you ;)
I've worked this afternoon on the matter of symbolic links instead of copy of tar files for YunoHost. The modified version is available on this branch, https://github.com/maniackcrudelis/archivist/pull/13
If you have time to try it before I release, it would be perfect :)
I tried on my own, it worked as expected, no local copy of the tar files. But yet the copy to other recipients use the real tar file, not the link. However, as explained, you can't compress your backups anymore. Quite obvious, otherwise you can't use a symbolic link ! Also, you can't use encryption, because when encrypted, the symbolic links can't be read as such anymore.
Awesome! Thanks a lot. I was about to comment there that my backups are becoming huge because of the duplication :D. If you can please tell me how to test that branch exactly, I will. I do not want to ruin my ynh install and such, but I am willing to test it for sure. If you can give me step by step how to properly do this please.
A step by step way to do this would be to
archivist.sh
by the new one, https://github.com/maniackcrudelis/archivist/blob/compression/archivist.shlocal.sender.sh
and rsync_ssh.sender.sh
if you use any of them. https://github.com/maniackcrudelis/archivist/tree/compression/sendersBackup_list.conf
to use symlink
instead of none
for ynh_compression_mode
.You can after that restore your backup to get rid of the modification. Or keep it as it is. The worst that could happen would be for the script to doesn't work. Not much.
Ok thanks I will try to do it tomorrow or these days. Sorry, I was super busy.
So you know I have not forgotten about this...I was super buys. The following days I'll test it 100%. Sorry
Take your time, there's no hurry. After all, you're mainly the one who's waiting for that feature, so take the time you need and don't worry.
Done! How do I manually trigger archivist so I test it?
I do not think Archivist works on one of my servers. The auto backups do not start despite having this in the config:
## OPTIONS
# Backup directory.
backup_dir=/home/yunohost.app/archivist/backup
# Encrypted backup directory.
# Usually just next to the backup directory
enc_backup_dir=/home/yunohost.app/archivist/encrypted_backup
# Encryption
# true/false
encrypt=false
# Password for encryption
# This file should be set at chmod 400
cryptpass=na
# Compression algorithm to use
# gzip
# Standard compression algorithm.
# Fast and light on ressources.
# lzop
# Very fast algorithm.
# Low efficency
# zstd
# Zstandard algorithm
# Similar to gzip but faster
# bzip2
# Very slow but very effective.
# Light on ressources.
# lzma
# Faster than bzip2 and even more effective.
# But demanding in resources.
# lzip
# Similar to lzma.
# xz
# Similar to lzma but more recent.
#
# none
# No compression
# Concatenation in a tar file only
#
# Default: gzip
ynh_compression_mode=symlink
files_compression_mode=gzip
# --------------------------------------------------------------------------------------
## YUNOHOST BACKUPS
# YunoHost backups
# Specific backup made by 'yunohost backup' command
# ynh_core_backup=true/false: Make a backup of the core of YunoHost, without any apps.
ynh_core_backup=true
ynh_core_pre_backup=
ynh_core_post_backup=
# ynh_app_backup=APP: Make a backup of an app.
# You can add as many lines as you want to save multiple apps.
# List all apps with sudo yunohost app list --installed | grep "id: "
# ynh_app_backup=wordpress
# If you don't want an app with a lot of data to backup those big files, please add 'do_not_backup_data' after the app name.
# ynh_app_backup=transmission do_not_backup_data
ynh_app_pre_backup=
ynh_app_post_backup=
ynh_app_backup=archivist
ynh_app_backup=bibliogram
ynh_app_backup=cryptpad
ynh_app_backup=diagramsnet
ynh_app_backup=etherpad_mypads__2
ynh_app_backup=friendica
ynh_app_backup=lstu
ynh_app_backup=lufi
ynh_app_backup=netdata
ynh_app_backup=nextcloud do_not_backup_data
ynh_app_backup=onlyoffice
ynh_app_backup=opensondage
ynh_app_backup=peertube do_not_backup_data
ynh_app_backup=qr
ynh_app_backup=rainloop
ynh_app_backup=rss-bridge
ynh_app_backup=searx
ynh_app_backup=wordpress
ynh_app_backup=
# --------------------------------------------------------------------------------------
## FILES BACKUPS
# Max size for each backup in Mb.
# Be carreful, it's only a soft limit, that means the script will try to limit each backup.
# Because, it will never made more than one backup for a single directory (Even if it's a real big directory without subdirectories). And the same if there's files next to subdirectories, only one backup will be made for all this files.
max_size=500
# Backup of files and directories
# Add as many lines as you want for each directory or file you want to be backuped.
# Exclude a directory, a file, or multiples files with a regex with the exclude_backup instruction.
# file_to_backup="/directory/to backup"
# file_to_backup=/file/to backup
# exclude_backup="/directory/to exclude"
# exclude_backup=/file/to exclude
# exclude_backup="/exclude/all/tarball/in_this_directory/.tar.gz$"
files_pre_backup=
files_post_backup=
file_to_backup=
exclude_backup=
# --------------------------------------------------------------------------------------
## BACKUPS RECIPIENTS
# All options following a recipient name will be enabled for this recipient only.
# > recipient name=Name of this recipient.
# type=Choose between one of the scripts in the "senders" directory.
# destination directory=Directory where to put the backup in the other side.
# encrypt=Override main option for encryption. (true/false) (Optionnal option)
# specific option for type=See the chosen script to know what's the options.
# exclude backup=Exclude a backup file or a directory from the backup. This option can be duplicated. (Optionnal option)
# include backup=Choose the only file or directory which be send. This option can be duplicated. (Optionnal option)
# > recipient name=local example
# type=local
# destination directory=/my/local/backup
# encrypt=false
# pre_backup=
# post_backup=
# exclude backup=/exclude/dir
# include backup=
# > recipient name=rsync ssh example
# type=rsync_ssh
# destination directory=backup
# encrypt=false
# ssh_host=domain.tld
# ssh_user=user
# ssh_port=22
# ssh_key=/home/user/.ssh/id_rsa
# ssh_pwd=
# ssh_options=
# pre_backup=
# post_backup=
# exclude backup=/exclude/dir
# include backup=
# > recipient name=b2 example
# type=b2
# destination directory=backup
# encrypt=false
# b2_bucket=my-bucket
# pre_backup=
# post_backup=
# exclude backup=/exclude/dir
# include backup=
I manually ran bash /opt/yunohost/archivist/archivist.sh
and the backup worked great. Also no more backup files in the Archivist directory. So the symlink works. But now why aren't these backups triggered automatically? :D
Your config file is correct indeed.
But the automation is up to the cron task, which you can find at /etc/cron.d/archivist
Yup. This is what is in that file
0 2 * * * root nice -n10 /opt/yunohost/archivist/archivist.sh | tee -a /var/log/archivist/archivist.log 2>&1
So everyday at 2 AM, it should work just fine. You can have a look to the log file to see if there's anything bad happening.
/var/log/archivist/ is empty....
ok... This is quite strange... Even is the script does nothing, you should at least have a date at the beginning of each run. So you should have a log file.
One thing to do could be to duplicate the line in the cron file and to specify another occurrence, in 5 minutes or so. That way, you can see what's going on and, with top or htop, see if archivist starts has it should be. And if not to log directly into a file without tee to duplicate.
Don't know if you're comfortable with cron and the way you can edit it ? And the way it works.
Ok let me do the 5 min schedule thing first and monitor with htop. Since I am not very familiar with this, to schedule at say 7:14 PM it should be: 1 9 1 4 * ? Like Hour: 19 and min 14 ?
edit: nevermind found this https://crontab.guru - ok let me try
Ok so nothing happened. I added 8 19 * * * root nice -n10 /opt/yunohost/archivist/archivist.sh | tee -a /var/log/archivist/archivist.log 2>&1
to trigger at 7:08 PM time. Server time of course. Watching htop. Nothing triggered as far as I can tell.
And if not to log directly into a file without tee to duplicate.
Don't know if you're comfortable with cron and the way you can edit it ? And the way it works.
I do not know how to do that but I am willing to try if you provide some instructions please. It is weird since Archivist works perfectly fine on my other server...isn't it a way to purge it completely and reinstall?
Actually what's bothering me here is that your cron task doesn't even start Which mean most of the time that the error is before the script itself.
By the way I've noticed you said you did bash /opt/yunohost/archivist/archivist.sh
, is it out of habit ? Or because /opt/yunohost/archivist/archivist.sh
alone did not work ?
In the second case, that would be the problem, because the script lack the execution permission.
If so, a chmod +x /opt/yunohost/archivist/archivist.sh
will solve that.
In any case, you can replace | tee -a /var/log/archivist/archivist.log 2>&1
by a simple > /log_test 2>&1
to have a direct log. It wouldn't be really different though...
Yes I used bash because it didn't work without. chmod it and works now without bash. I tried again after that, same.
0 2 * * * root nice -n10 /opt/yunohost/archivist/archivist.sh | tee -a /var/log/archivist/archivist.log 2>&1
50 19 * * * root nice -n10 /opt/yunohost/archivist/archivist.sh | tee -a /var/log/archivist/archivist.log 2>&1
Tried for 19:50....nothing. I looked at all processes and none is from archivist. I even restarted nginx. Should I reboot the server?
In any case, you can replace
| tee -a /var/log/archivist/archivist.log 2>&1
by a simple> /log_test 2>&1
to have a direct log. It wouldn't be really different though...
I did that but then what? :) There is no log-test on my server.
You should have had a log in /log_test
, at the root of your system.
So... This is really strange, especially in that order, I would have got it if it didn't work without root, but with it...
Once thing you could try is to log as root
su root
and then to run
nice -n10 /opt/yunohost/archivist/archivist.sh
If it works, you can then run
nice -n10 /opt/yunohost/archivist/archivist.sh | tee -a /var/log/archivist/archivist.log 2>&1
If it does work that way, without an error, but it still doesn't from cron. Well, that would be the weirdest error I have ever seen...
Ok so nice -n10 /opt/yunohost/archivist/archivist.sh
worked! nice -n10 /opt/yunohost/archivist/archivist.sh | tee -a /var/log/archivist/archivist.log 2>&1
also worked! We now have a log file in the var/log/archivist folder:
´´´
Fri 26 Feb 2021 02:27:18 AM CET
Build list of files to backup Password has been changed. Compress backups
Backup YunoHost core and apps
Make a temporary backup for ynh_core_backup
This backup is the same than the previous one Make a temporary backup for archivist_backup This backup is the same than the previous one Make a temporary backup for bibliogram_backup This backup is the same than the previous one Make a temporary backup for cryptpad_backup The temporary backup failed... Make a temporary backup for diagramsnet_backup This backup is the same than the previous one Make a temporary backup for etherpad_mypads__2_backup This backup is the same than the previous one Make a temporary backup for friendica_backup This backup is different than the previous one
Make a real backup for friendica_backup Make a temporary backup for lstu_backup The temporary backup failed... Make a temporary backup for lufi_backup This backup is the same than the previous one Make a temporary backup for netdata_backup This backup is the same than the previous one Make a temporary backup for nextcloud_backup This backup is different than the previous one Make a real backup for nextcloud_backup Make a temporary backup for onlyoffice_backup This backup is the same than the previous one Make a temporary backup for opensondage_backup This backup is the same than the previous one Make a temporary backup for peertube_backup This backup is the same than the previous one Make a temporary backup for qr_backup This backup is the same than the previous one Make a temporary backup for rainloop_backup This backup is the same than the previous one Make a temporary backup for rss-bridge_backup This backup is the same than the previous one Make a temporary backup for searx_backup This backup is different than the previous one Make a real backup for searx_backup Make a temporary backup for wordpress_backup The temporary backup failed... Clean old backup files Fri 26 Feb 2021 02:35:30 AM CET ´´´
But I scheduled the backup in 10 or so minutes and still doesn't trigger automatically. And no new logs in the log file. Basically the cron for Archivist is invisible on my system. The good news is that the symbolic links thing works perfectly fine.
Huh, I have to tell you that I've never seen such an error... If the command works with the user root, there's no way it wouldn't work when ran from a cron task.
Eventually, you can try to run a simple command, like an echo into a file or so to be sure you cron is working. But I've never seen a cron not working !
So in the same cron folder, I have cron jobs for Friendica, Peertube, Nextcloud and more apps. All work fine. I even changed the cron for nextcloud to check. I even setup Archivist every 5 min to check...is like it is invisible.
sudo grep CRON /var/log/syslog
Feb 26 00:02:01 trom CRON[13165]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 00:04:01 trom CRON[14298]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 00:05:01 trom CRON[14835]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 00:06:01 trom CRON[15378]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 00:08:01 trom CRON[16470]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 00:09:01 trom CRON[17010]: (root) CMD ( [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessionclean; fi)
Feb 26 00:10:01 trom CRON[17617]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 00:10:02 trom CRON[17620]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 00:12:01 trom CRON[18959]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 00:14:01 trom CRON[20077]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 00:15:01 trom CRON[20612]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 00:15:01 trom CRON[20615]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 00:16:01 trom CRON[21137]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 00:17:01 trom CRON[21656]: (root) CMD ( cd / && run-parts --report /etc/cron.hourly)
Feb 26 00:18:01 trom CRON[22132]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 00:20:01 trom CRON[23262]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 00:20:01 trom CRON[23265]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 00:22:01 trom CRON[24890]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 00:24:01 trom CRON[26059]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 00:25:01 trom CRON[26590]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 00:26:01 trom CRON[27101]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 00:28:01 trom CRON[28217]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 00:30:01 trom CRON[29282]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 00:30:01 trom CRON[29284]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 00:30:01 trom CRON[29286]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 00:32:01 trom CRON[30624]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 00:34:01 trom CRON[31754]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 00:35:01 trom CRON[32273]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 00:36:01 trom CRON[326]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 00:37:01 trom CRON[896]: (root) CMD (sync; echo 3 > /proc/sys/vm/drop_caches)
Feb 26 00:38:01 trom CRON[1562]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 00:39:02 trom CRON[2364]: (root) CMD ( [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessionclean; fi)
Feb 26 00:40:01 trom CRON[3062]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 00:40:01 trom CRON[3063]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 00:42:01 trom CRON[4709]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 00:44:01 trom CRON[5864]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 00:45:01 trom CRON[6412]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 00:45:01 trom CRON[6416]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 00:46:02 trom CRON[6942]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 00:48:01 trom CRON[8047]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 00:50:01 trom CRON[9133]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 00:50:01 trom CRON[9137]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 00:52:01 trom CRON[10516]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 00:54:01 trom CRON[11656]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 00:55:01 trom CRON[12180]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 00:56:01 trom CRON[12700]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 00:58:01 trom CRON[13788]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 01:00:01 trom CRON[14872]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 01:00:01 trom CRON[14875]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 01:00:01 trom CRON[14877]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 01:02:01 trom CRON[16490]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 01:04:01 trom CRON[17654]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 01:05:01 trom CRON[18174]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 01:06:01 trom CRON[18705]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 01:08:01 trom CRON[19818]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 01:09:01 trom CRON[20348]: (root) CMD ( [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessionclean; fi)
Feb 26 01:10:01 trom CRON[20942]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 01:10:01 trom CRON[20944]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 01:12:01 trom CRON[22312]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 01:14:01 trom CRON[23452]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 01:15:02 trom CRON[23987]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 01:15:02 trom CRON[23989]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 01:16:01 trom CRON[24506]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 01:17:01 trom CRON[25037]: (root) CMD ( cd / && run-parts --report /etc/cron.hourly)
Feb 26 01:18:01 trom CRON[25661]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 01:20:01 trom CRON[26752]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 01:20:01 trom CRON[26754]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 01:22:01 trom CRON[28494]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 01:24:01 trom CRON[29617]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 01:25:01 trom CRON[30142]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 01:26:01 trom CRON[30663]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 01:28:01 trom CRON[31795]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 01:30:01 trom CRON[383]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 01:30:01 trom CRON[386]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 01:30:01 trom CRON[390]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 01:32:01 trom CRON[1849]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 01:34:01 trom CRON[3282]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 01:35:01 trom CRON[3835]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 01:36:01 trom CRON[4353]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 01:37:01 trom CRON[4872]: (root) CMD (sync; echo 3 > /proc/sys/vm/drop_caches)
Feb 26 01:38:01 trom CRON[5443]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 01:39:01 trom CRON[6052]: (root) CMD ( [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessionclean; fi)
Feb 26 01:40:01 trom CRON[6591]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 01:40:01 trom CRON[6594]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 01:42:01 trom CRON[8294]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 01:44:01 trom CRON[9431]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 01:45:01 trom CRON[9966]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 01:45:01 trom CRON[9970]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 01:46:01 trom CRON[10523]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 01:48:01 trom CRON[11569]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 01:50:01 trom CRON[12610]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 01:50:01 trom CRON[12611]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 01:52:01 trom CRON[14019]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 01:54:01 trom CRON[15165]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 01:55:01 trom CRON[15693]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 01:56:01 trom CRON[16217]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 01:58:01 trom CRON[17310]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 02:00:01 trom CRON[18375]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 02:00:01 trom CRON[18374]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 02:00:01 trom CRON[18378]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 02:02:01 trom CRON[20067]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 02:04:01 trom CRON[21179]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 02:05:01 trom CRON[21711]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 02:06:01 trom CRON[22250]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 02:08:01 trom CRON[23358]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 02:09:01 trom CRON[23880]: (root) CMD ( [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessionclean; fi)
Feb 26 02:10:01 trom CRON[24468]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 02:10:01 trom CRON[24469]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 02:12:01 trom CRON[25867]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 02:14:01 trom CRON[29155]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 02:15:01 trom CRON[13992]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 02:15:01 trom CRON[13991]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 02:16:01 trom CRON[29186]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 02:17:01 trom CRON[23156]: (root) CMD ( cd / && run-parts --report /etc/cron.hourly)
Feb 26 02:18:01 trom CRON[9287]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 02:20:01 trom CRON[2515]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 02:20:01 trom CRON[2516]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 02:22:01 trom CRON[18277]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 02:24:01 trom CRON[13504]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 02:25:01 trom CRON[3375]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 02:26:01 trom CRON[8975]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 02:28:01 trom CRON[812]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 02:30:01 trom CRON[24904]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 02:30:01 trom CRON[24905]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 02:30:01 trom CRON[24909]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 02:32:01 trom CRON[26339]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 02:34:01 trom CRON[24650]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 02:35:01 trom CRON[22759]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 02:36:01 trom CRON[31909]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 02:37:01 trom CRON[32554]: (root) CMD (sync; echo 3 > /proc/sys/vm/drop_caches)
Feb 26 02:38:02 trom CRON[363]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 02:39:01 trom CRON[684]: (root) CMD ( [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessionclean; fi)
Feb 26 02:40:01 trom CRON[1219]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 02:40:01 trom CRON[1220]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 02:42:01 trom CRON[3045]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 02:44:27 trom cron[1271]: (CRON) INFO (pidfile fd = 3)
Feb 26 02:44:27 trom cron[1271]: (CRON) INFO (Running @reboot jobs)
Feb 26 02:45:00 trom CRON[3411]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 02:45:00 trom CRON[3412]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 02:46:01 trom CRON[4022]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 02:48:01 trom CRON[4348]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 02:50:01 trom CRON[4946]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 02:50:01 trom CRON[4947]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 02:52:01 trom CRON[6332]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 02:54:01 trom CRON[7462]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 02:55:01 trom CRON[8020]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 02:56:01 trom CRON[8425]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 02:58:01 trom CRON[11318]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 03:00:01 trom CRON[12428]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 03:00:01 trom CRON[12431]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 03:00:01 trom CRON[12436]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 03:02:01 trom CRON[13775]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 03:04:01 trom CRON[14516]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 03:05:01 trom CRON[14920]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 03:06:01 trom CRON[15287]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 03:08:01 trom CRON[16064]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 03:09:01 trom CRON[16443]: (root) CMD ( [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessionclean; fi)
Feb 26 03:10:01 trom CRON[16907]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 03:10:01 trom CRON[16911]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 03:12:01 trom CRON[17996]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 03:14:01 trom CRON[18744]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 03:15:01 trom CRON[19147]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 03:15:01 trom CRON[19151]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 03:16:01 trom CRON[19534]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 03:17:01 trom CRON[19943]: (root) CMD ( cd / && run-parts --report /etc/cron.hourly)
Feb 26 03:18:01 trom CRON[20316]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 03:20:01 trom CRON[21062]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 03:20:01 trom CRON[21063]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 03:22:01 trom CRON[22482]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 03:24:01 trom CRON[23228]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 03:25:01 trom CRON[23651]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 03:26:01 trom CRON[24009]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 03:28:01 trom CRON[24824]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 03:30:01 trom CRON[25557]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 03:30:01 trom CRON[25560]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 03:30:01 trom CRON[25558]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 03:32:01 trom CRON[26625]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 03:34:01 trom CRON[27360]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 03:35:01 trom CRON[27783]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 03:36:01 trom CRON[28159]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 03:37:01 trom CRON[28586]: (root) CMD (sync; echo 3 > /proc/sys/vm/drop_caches)
Feb 26 03:38:01 trom CRON[28970]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 03:39:01 trom CRON[29331]: (root) CMD ( [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessionclean; fi)
Feb 26 03:40:01 trom CRON[29814]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 03:40:01 trom CRON[29815]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 03:42:01 trom CRON[31190]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 03:44:01 trom CRON[31962]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 03:45:01 trom CRON[32397]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 03:45:01 trom CRON[32399]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 03:46:01 trom CRON[340]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 03:48:01 trom CRON[1168]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 03:50:01 trom CRON[2344]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 03:50:01 trom CRON[2346]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 03:52:01 trom CRON[3566]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 03:54:01 trom CRON[4320]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 03:55:01 trom CRON[4691]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 03:56:01 trom CRON[5097]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 03:58:01 trom CRON[5884]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 04:00:01 trom CRON[6659]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 04:00:01 trom CRON[6660]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 04:00:01 trom CRON[6663]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 04:02:01 trom CRON[8028]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 04:04:01 trom CRON[8784]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 04:05:01 trom CRON[9177]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 04:06:01 trom CRON[9589]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 04:08:01 trom CRON[10417]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 04:09:01 trom CRON[10794]: (root) CMD ( [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessionclean; fi)
Feb 26 04:10:01 trom CRON[11246]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 04:10:01 trom CRON[11247]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 04:12:01 trom CRON[12297]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 04:14:01 trom CRON[13055]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 04:15:01 trom CRON[13458]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 04:15:01 trom CRON[13459]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 04:16:01 trom CRON[13877]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 04:17:01 trom CRON[14351]: (root) CMD ( cd / && run-parts --report /etc/cron.hourly)
Feb 26 04:18:01 trom CRON[14731]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 04:20:01 trom CRON[15465]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 04:20:01 trom CRON[15466]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 04:22:01 trom CRON[16805]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 04:24:01 trom CRON[17506]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 04:25:01 trom CRON[17898]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 04:26:01 trom CRON[18299]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 04:28:01 trom CRON[19096]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 04:30:01 trom CRON[19848]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 04:30:01 trom CRON[19849]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 04:30:01 trom CRON[19850]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 04:32:02 trom CRON[20897]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 04:34:01 trom CRON[21606]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 04:35:01 trom CRON[21974]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 04:36:01 trom CRON[22424]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 04:37:01 trom CRON[22845]: (root) CMD (sync; echo 3 > /proc/sys/vm/drop_caches)
Feb 26 04:38:01 trom CRON[23211]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 04:39:01 trom CRON[23587]: (root) CMD ( [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessionclean; fi)
Feb 26 04:40:02 trom CRON[24031]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 04:40:02 trom CRON[24034]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 04:42:01 trom CRON[25391]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 04:44:01 trom CRON[26148]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 04:45:01 trom CRON[26579]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 04:45:01 trom CRON[26580]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 04:46:01 trom CRON[26986]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 04:48:01 trom CRON[27806]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 04:50:01 trom CRON[28545]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 04:50:01 trom CRON[28546]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 04:52:01 trom CRON[29696]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 04:54:01 trom CRON[30456]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 04:55:02 trom CRON[30844]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 04:56:01 trom CRON[31253]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 04:58:01 trom CRON[32044]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 05:00:01 trom CRON[338]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 05:00:01 trom CRON[343]: (lufi) CMD (cd "/var/www/lufi/" && /usr/bin/carton exec script/lufi cron stats)
Feb 26 05:00:01 trom CRON[340]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 05:00:01 trom CRON[339]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 05:02:01 trom CRON[1985]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 05:04:01 trom CRON[3120]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 05:05:01 trom CRON[3539]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 05:06:01 trom CRON[3950]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 05:08:01 trom CRON[4749]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 05:09:01 trom CRON[5138]: (root) CMD ( [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessionclean; fi)
Feb 26 05:10:01 trom CRON[5569]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 05:10:01 trom CRON[5570]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 05:12:01 trom CRON[6720]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 05:14:01 trom CRON[7486]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 05:15:01 trom CRON[7890]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 05:15:01 trom CRON[7892]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 05:16:01 trom CRON[8298]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 05:17:01 trom CRON[8707]: (root) CMD ( cd / && run-parts --report /etc/cron.hourly)
Feb 26 05:18:01 trom CRON[9096]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 05:20:01 trom CRON[9866]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 05:20:01 trom CRON[9865]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 05:22:01 trom CRON[11294]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 05:24:01 trom CRON[12021]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 05:25:01 trom CRON[12408]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 05:26:01 trom CRON[12813]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 05:28:01 trom CRON[13595]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 05:30:01 trom CRON[14339]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 05:30:01 trom CRON[14337]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 05:30:01 trom CRON[14341]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 05:32:01 trom CRON[15431]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 05:34:01 trom CRON[16166]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 05:35:01 trom CRON[16551]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 05:36:01 trom CRON[17007]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 05:37:01 trom CRON[17409]: (root) CMD (sync; echo 3 > /proc/sys/vm/drop_caches)
Feb 26 05:38:01 trom CRON[17799]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 05:39:01 trom CRON[18174]: (root) CMD ( [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessionclean; fi)
Feb 26 05:40:01 trom CRON[18637]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 05:40:01 trom CRON[18639]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 05:42:01 trom CRON[20046]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 05:44:01 trom CRON[20796]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 05:45:01 trom CRON[21225]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 05:45:01 trom CRON[21227]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 05:46:01 trom CRON[21640]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 05:48:01 trom CRON[22419]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 05:50:01 trom CRON[23167]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 05:50:01 trom CRON[23169]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 05:52:01 trom CRON[24194]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 05:54:01 trom CRON[25536]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 05:55:01 trom CRON[25909]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 05:56:01 trom CRON[26331]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 05:58:01 trom CRON[27115]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 06:00:01 trom CRON[27874]: (lufi) CMD (cd "/var/www/lufi/" && /usr/bin/carton exec script/lufi cron cleanbdd)
Feb 26 06:00:01 trom CRON[27876]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 06:00:01 trom CRON[27875]: (lufi) CMD (cd "/var/www/lufi/" && /usr/bin/carton exec script/lufi cron cleanfiles)
Feb 26 06:00:01 trom CRON[27879]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 06:00:01 trom CRON[27883]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 06:02:01 trom CRON[29251]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 06:04:01 trom CRON[30059]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 06:05:01 trom CRON[30433]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 06:06:01 trom CRON[30846]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 06:08:01 trom CRON[31607]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 06:09:01 trom CRON[31997]: (root) CMD ( [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessionclean; fi)
Feb 26 06:10:01 trom CRON[32459]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 06:10:01 trom CRON[32460]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 06:12:01 trom CRON[1032]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 06:14:01 trom CRON[2219]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 06:15:01 trom CRON[2734]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 06:15:01 trom CRON[2735]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 06:16:01 trom CRON[3196]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 06:17:01 trom CRON[3588]: (root) CMD ( cd / && run-parts --report /etc/cron.hourly)
Feb 26 06:18:01 trom CRON[3988]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 06:20:01 trom CRON[4739]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 06:20:01 trom CRON[4741]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 06:22:01 trom CRON[6093]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 06:24:01 trom CRON[6872]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 06:25:01 trom CRON[7248]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 06:25:01 trom CRON[7247]: (root) CMD (test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily ))
Feb 26 06:26:01 trom CRON[7843]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 06:28:01 trom CRON[8634]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 06:30:01 trom CRON[9379]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 06:30:01 trom CRON[9381]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 06:30:01 trom CRON[9384]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 06:32:01 trom CRON[10376]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 06:34:01 trom CRON[11185]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 06:35:01 trom CRON[11573]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 06:36:01 trom CRON[11987]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 06:37:01 trom CRON[12346]: (root) CMD (sync; echo 3 > /proc/sys/vm/drop_caches)
Feb 26 06:38:01 trom CRON[12771]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 06:39:01 trom CRON[13160]: (root) CMD ( [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessionclean; fi)
Feb 26 06:40:01 trom CRON[13615]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 06:40:01 trom CRON[13616]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 06:42:01 trom CRON[14930]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 06:44:01 trom CRON[15765]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 06:45:01 trom CRON[16220]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 06:45:01 trom CRON[16221]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 06:46:01 trom CRON[16618]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 06:48:01 trom CRON[17459]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 06:50:01 trom CRON[18195]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 06:50:01 trom CRON[18196]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 06:52:01 trom CRON[19194]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 06:54:02 trom CRON[19969]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 06:55:01 trom CRON[20355]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 06:56:01 trom CRON[20764]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 06:58:01 trom CRON[21597]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 07:00:01 trom CRON[22355]: (lufi) CMD (cd "/var/www/lufi/" && /usr/bin/carton exec script/lufi cron watch)
Feb 26 07:00:01 trom CRON[22356]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 07:00:01 trom CRON[22357]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 07:00:01 trom CRON[22360]: (root) CMD (: YunoHost Automatic Diagnosis; sleep $((RANDOM%1200)); yunohost diagnosis run --email > /dev/null 2>/dev/null || echo "Running the automatic diagnosis failed miserably")
Feb 26 07:00:01 trom CRON[22358]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 07:02:01 trom CRON[23711]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 07:04:01 trom CRON[24504]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 07:05:01 trom CRON[24885]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 07:06:01 trom CRON[25292]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 07:08:01 trom CRON[26098]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 07:09:01 trom CRON[26974]: (root) CMD ( [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessionclean; fi)
Feb 26 07:10:01 trom CRON[27457]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 07:10:01 trom CRON[27459]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 07:12:01 trom CRON[28453]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 07:14:01 trom CRON[29246]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 07:15:01 trom CRON[29626]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 07:15:01 trom CRON[29629]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 07:16:01 trom CRON[30040]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 07:17:01 trom CRON[30457]: (root) CMD ( cd / && run-parts --report /etc/cron.hourly)
Feb 26 07:18:01 trom CRON[30876]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 07:20:01 trom CRON[31638]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 07:20:01 trom CRON[31639]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 07:22:01 trom CRON[558]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 07:24:01 trom CRON[1406]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 07:25:01 trom CRON[1925]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 07:26:01 trom CRON[2661]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 07:28:01 trom CRON[3521]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 07:30:01 trom CRON[4281]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 07:30:01 trom CRON[4287]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 07:30:01 trom CRON[4288]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 07:32:01 trom CRON[5296]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 07:34:01 trom CRON[6080]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 07:35:01 trom CRON[6451]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 07:36:01 trom CRON[6866]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 07:37:01 trom CRON[7253]: (root) CMD (sync; echo 3 > /proc/sys/vm/drop_caches)
Feb 26 07:38:01 trom CRON[7670]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 07:39:01 trom CRON[8057]: (root) CMD ( [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessionclean; fi)
Feb 26 07:40:01 trom CRON[8514]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 07:40:01 trom CRON[8513]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 07:42:01 trom CRON[9866]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 07:44:01 trom CRON[10651]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 07:45:01 trom CRON[11094]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 07:45:01 trom CRON[11095]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 07:46:01 trom CRON[11491]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 07:48:01 trom CRON[12302]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 07:50:01 trom CRON[13067]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 07:50:01 trom CRON[13068]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 07:52:01 trom CRON[14101]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 07:54:01 trom CRON[14845]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 07:55:01 trom CRON[15239]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 07:56:01 trom CRON[15662]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 07:58:01 trom CRON[16493]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 08:00:01 trom CRON[17249]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 08:00:01 trom CRON[17251]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 08:00:01 trom CRON[17250]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 08:02:01 trom CRON[18630]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 08:04:01 trom CRON[19414]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 08:05:01 trom CRON[19791]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 08:06:01 trom CRON[20185]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 08:08:01 trom CRON[21010]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 08:09:01 trom CRON[21387]: (root) CMD ( [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessionclean; fi)
Feb 26 08:10:01 trom CRON[21826]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 08:10:01 trom CRON[21828]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 08:12:01 trom CRON[22812]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 08:14:01 trom CRON[23611]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 08:15:01 trom CRON[23984]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 08:15:01 trom CRON[23985]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 08:16:01 trom CRON[24357]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 08:17:01 trom CRON[24762]: (root) CMD ( cd / && run-parts --report /etc/cron.hourly)
Feb 26 08:18:01 trom CRON[25187]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 08:20:01 trom CRON[25928]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 08:20:01 trom CRON[25929]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 08:22:01 trom CRON[27232]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 08:24:01 trom CRON[28009]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 08:25:01 trom CRON[28378]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 08:26:01 trom CRON[28757]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 08:28:01 trom CRON[29612]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 08:30:01 trom CRON[30346]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 08:30:01 trom CRON[30347]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 08:30:01 trom CRON[30348]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 08:32:01 trom CRON[31360]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 08:34:01 trom CRON[32134]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 08:35:01 trom CRON[32550]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 08:36:01 trom CRON[478]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 08:37:01 trom CRON[907]: (root) CMD (sync; echo 3 > /proc/sys/vm/drop_caches)
Feb 26 08:38:01 trom CRON[1343]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 08:39:01 trom CRON[1870]: (root) CMD ( [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessionclean; fi)
Feb 26 08:40:01 trom CRON[2697]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 08:40:01 trom CRON[2701]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 08:42:01 trom CRON[4085]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 08:44:01 trom CRON[4918]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 08:45:01 trom CRON[5375]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 08:45:01 trom CRON[5377]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 08:46:01 trom CRON[5773]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 08:48:01 trom CRON[6614]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 08:50:01 trom CRON[7385]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 08:50:01 trom CRON[7387]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 08:52:01 trom CRON[8404]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 08:54:01 trom CRON[9199]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 08:55:01 trom CRON[9592]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 08:56:01 trom CRON[9978]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 08:58:01 trom CRON[10786]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 09:00:01 trom CRON[11516]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 09:00:01 trom CRON[11519]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 09:00:01 trom CRON[11518]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 09:02:01 trom CRON[12856]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 09:04:01 trom CRON[13652]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 09:05:01 trom CRON[14043]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 09:06:01 trom CRON[14426]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 09:08:01 trom CRON[15270]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 09:09:01 trom CRON[15711]: (root) CMD ( [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessionclean; fi)
Feb 26 09:10:01 trom CRON[16168]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 09:10:01 trom CRON[16169]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 09:12:01 trom CRON[17194]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 09:14:01 trom CRON[17991]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 09:15:01 trom CRON[18367]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 09:15:01 trom CRON[18369]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 09:16:01 trom CRON[18757]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 09:17:01 trom CRON[19175]: (root) CMD ( cd / && run-parts --report /etc/cron.hourly)
Feb 26 09:18:01 trom CRON[19583]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 09:20:01 trom CRON[20335]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 09:20:01 trom CRON[20336]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 09:22:01 trom CRON[21672]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 09:24:01 trom CRON[22465]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 09:25:01 trom CRON[22863]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 09:26:01 trom CRON[23252]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 09:28:01 trom CRON[24176]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 09:30:01 trom CRON[24936]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 09:30:02 trom CRON[24940]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 09:30:02 trom CRON[24938]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 09:32:01 trom CRON[25934]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 09:34:01 trom CRON[26731]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 09:35:01 trom CRON[27110]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 09:36:01 trom CRON[27490]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 09:37:01 trom CRON[27895]: (root) CMD (sync; echo 3 > /proc/sys/vm/drop_caches)
Feb 26 09:38:01 trom CRON[28308]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 09:39:01 trom CRON[28740]: (root) CMD ( [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessionclean; fi)
Feb 26 09:40:01 trom CRON[29127]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 09:40:01 trom CRON[29128]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 09:42:01 trom CRON[30466]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 09:44:01 trom CRON[31227]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 09:45:01 trom CRON[31633]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 09:45:01 trom CRON[31636]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 09:46:01 trom CRON[32041]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 09:48:01 trom CRON[453]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 09:50:01 trom CRON[1252]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 09:50:01 trom CRON[1253]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 09:52:01 trom CRON[2759]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 09:54:01 trom CRON[3594]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 09:55:01 trom CRON[3983]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 09:56:01 trom CRON[4366]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 09:58:01 trom CRON[5266]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 10:00:01 trom CRON[6010]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 10:00:01 trom CRON[6013]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 10:00:01 trom CRON[6015]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 10:02:01 trom CRON[7349]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 10:04:01 trom CRON[8166]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 10:05:01 trom CRON[8540]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 10:06:01 trom CRON[8929]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 10:08:01 trom CRON[9773]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 10:09:01 trom CRON[10228]: (root) CMD ( [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessionclean; fi)
Feb 26 10:10:02 trom CRON[10604]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 10:10:02 trom CRON[10603]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 10:12:01 trom CRON[11704]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 10:14:01 trom CRON[12500]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 10:15:01 trom CRON[12911]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 10:15:01 trom CRON[12914]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 10:16:01 trom CRON[13293]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 10:17:01 trom CRON[13720]: (root) CMD ( cd / && run-parts --report /etc/cron.hourly)
Feb 26 10:18:01 trom CRON[14133]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 10:20:01 trom CRON[14895]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 10:20:01 trom CRON[14898]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 10:22:01 trom CRON[16242]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 10:24:01 trom CRON[17053]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 10:25:02 trom CRON[17446]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 10:26:01 trom CRON[17829]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 10:28:01 trom CRON[18645]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 10:30:01 trom CRON[19398]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 10:30:01 trom CRON[19399]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 10:30:01 trom CRON[19403]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 10:32:01 trom CRON[20460]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 10:34:01 trom CRON[21253]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 10:35:01 trom CRON[21616]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 10:36:01 trom CRON[21995]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 10:37:01 trom CRON[22408]: (root) CMD (sync; echo 3 > /proc/sys/vm/drop_caches)
Feb 26 10:38:01 trom CRON[22845]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 10:39:01 trom CRON[23295]: (root) CMD ( [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessionclean; fi)
Feb 26 10:40:01 trom CRON[23684]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 10:40:01 trom CRON[23686]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 10:42:01 trom CRON[25031]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 10:44:01 trom CRON[25890]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 10:45:01 trom CRON[26313]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 10:45:01 trom CRON[26316]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 10:46:01 trom CRON[26759]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 10:48:01 trom CRON[27575]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 10:50:01 trom CRON[28326]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 10:50:01 trom CRON[28329]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 10:52:01 trom CRON[29360]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 10:54:01 trom CRON[30160]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 10:55:01 trom CRON[30601]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 10:56:01 trom CRON[30986]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 10:58:01 trom CRON[31801]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 11:00:01 trom CRON[32541]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 11:00:01 trom CRON[32543]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 11:00:01 trom CRON[32544]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 11:02:01 trom CRON[1502]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 11:04:01 trom CRON[2714]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 11:05:01 trom CRON[3146]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 11:06:01 trom CRON[3532]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 11:08:01 trom CRON[4344]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 11:09:01 trom CRON[4815]: (root) CMD ( [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessionclean; fi)
Feb 26 11:10:01 trom CRON[5191]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 11:10:01 trom CRON[5192]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 11:12:01 trom CRON[6224]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 11:14:01 trom CRON[7012]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 11:15:01 trom CRON[7394]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 11:15:01 trom CRON[7395]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 11:16:01 trom CRON[7772]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 11:17:01 trom CRON[8178]: (root) CMD ( cd / && run-parts --report /etc/cron.hourly)
Feb 26 11:18:01 trom CRON[8583]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 11:20:01 trom CRON[9367]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 11:20:01 trom CRON[9370]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 11:22:01 trom CRON[10650]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 11:24:01 trom CRON[11470]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 11:25:02 trom CRON[11863]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 11:26:01 trom CRON[12254]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 11:28:01 trom CRON[13078]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 11:30:01 trom CRON[13854]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 11:30:01 trom CRON[13855]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 11:30:01 trom CRON[13857]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 11:32:01 trom CRON[14914]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 11:34:01 trom CRON[15713]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 11:35:01 trom CRON[16102]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 11:36:01 trom CRON[16517]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 11:37:01 trom CRON[16908]: (root) CMD (sync; echo 3 > /proc/sys/vm/drop_caches)
Feb 26 11:38:01 trom CRON[17337]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 11:39:01 trom CRON[17726]: (root) CMD ( [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessionclean; fi)
Feb 26 11:40:01 trom CRON[18162]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 11:40:01 trom CRON[18164]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 11:42:01 trom CRON[19487]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 11:44:01 trom CRON[20289]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 11:45:01 trom CRON[20680]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 11:45:01 trom CRON[20679]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 11:46:01 trom CRON[21083]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 11:48:01 trom CRON[21904]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 11:50:01 trom CRON[22659]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 11:50:01 trom CRON[22661]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 11:52:01 trom CRON[23697]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 11:54:01 trom CRON[25013]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 11:55:01 trom CRON[25390]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 11:56:01 trom CRON[25779]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 11:58:01 trom CRON[26625]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 12:00:01 trom CRON[27385]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 12:00:01 trom CRON[27386]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 12:00:01 trom CRON[27387]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 12:02:01 trom CRON[28730]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 12:04:01 trom CRON[29582]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 12:05:01 trom CRON[29972]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 12:06:01 trom CRON[30353]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 12:08:01 trom CRON[31159]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 12:09:01 trom CRON[31536]: (root) CMD ( [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessionclean; fi)
Feb 26 12:10:01 trom CRON[31971]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 12:10:01 trom CRON[31972]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 12:12:01 trom CRON[630]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 12:14:01 trom CRON[1482]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 12:15:01 trom CRON[1984]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 12:15:01 trom CRON[1985]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 12:16:01 trom CRON[2673]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 12:17:01 trom CRON[3117]: (root) CMD ( cd / && run-parts --report /etc/cron.hourly)
Feb 26 12:18:01 trom CRON[3583]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 12:20:01 trom CRON[4345]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 12:20:01 trom CRON[4346]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 12:22:01 trom CRON[5676]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 12:24:01 trom CRON[6457]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 12:25:01 trom CRON[6841]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 12:26:01 trom CRON[7216]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 12:28:01 trom CRON[8032]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 12:30:01 trom CRON[8792]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 12:30:01 trom CRON[8794]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 12:30:01 trom CRON[8795]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 12:32:01 trom CRON[9830]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 12:34:01 trom CRON[10651]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 12:35:01 trom CRON[11012]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 12:36:01 trom CRON[11384]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 12:37:01 trom CRON[11772]: (root) CMD (sync; echo 3 > /proc/sys/vm/drop_caches)
Feb 26 12:38:01 trom CRON[12198]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 12:39:01 trom CRON[12585]: (root) CMD ( [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessionclean; fi)
Feb 26 12:40:01 trom CRON[13020]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 12:40:01 trom CRON[13019]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 12:42:01 trom CRON[14349]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 12:44:01 trom CRON[15158]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 12:45:01 trom CRON[15573]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 12:45:01 trom CRON[15576]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 12:46:01 trom CRON[15988]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 12:48:01 trom CRON[16820]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 12:50:01 trom CRON[17559]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 12:50:01 trom CRON[17563]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 12:52:01 trom CRON[18607]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 12:54:01 trom CRON[19381]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 12:55:01 trom CRON[19824]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 12:56:01 trom CRON[20203]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 12:58:01 trom CRON[21015]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 13:00:01 trom CRON[21774]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 13:00:01 trom CRON[21777]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 13:00:01 trom CRON[21778]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 13:02:01 trom CRON[23120]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 13:04:01 trom CRON[23891]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 13:05:01 trom CRON[24252]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 13:06:01 trom CRON[24630]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 13:08:01 trom CRON[25453]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 13:09:01 trom CRON[25832]: (root) CMD ( [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessionclean; fi)
Feb 26 13:10:01 trom CRON[26281]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 13:10:01 trom CRON[26280]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 13:12:01 trom CRON[27328]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 13:14:01 trom CRON[28131]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 13:15:01 trom CRON[28498]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 13:15:01 trom CRON[28500]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 13:16:01 trom CRON[28874]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 13:17:01 trom CRON[29239]: (root) CMD ( cd / && run-parts --report /etc/cron.hourly)
Feb 26 13:18:01 trom CRON[29689]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 13:20:01 trom CRON[30450]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 13:20:01 trom CRON[30451]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 13:22:01 trom CRON[31792]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 13:24:01 trom CRON[32573]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 13:25:01 trom CRON[509]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 13:26:01 trom CRON[894]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 13:28:01 trom CRON[1856]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 13:30:01 trom CRON[3039]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 13:30:01 trom CRON[3040]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 13:30:01 trom CRON[3038]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 13:32:01 trom CRON[4122]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 13:34:01 trom CRON[4924]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 13:35:01 trom CRON[5305]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 13:36:01 trom CRON[5682]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 13:37:01 trom CRON[6129]: (root) CMD (sync; echo 3 > /proc/sys/vm/drop_caches)
Feb 26 13:38:01 trom CRON[6527]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 13:39:01 trom CRON[6954]: (root) CMD ( [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessionclean; fi)
Feb 26 13:40:01 trom CRON[7410]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 13:40:01 trom CRON[7412]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 13:42:01 trom CRON[8808]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 13:44:01 trom CRON[9586]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 13:45:01 trom CRON[9997]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 13:45:01 trom CRON[9998]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 13:46:01 trom CRON[10402]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 13:48:01 trom CRON[11347]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 13:50:01 trom CRON[12125]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 13:50:01 trom CRON[12126]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 13:52:01 trom CRON[13174]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 13:54:01 trom CRON[13965]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 13:55:01 trom CRON[14381]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 13:56:01 trom CRON[14763]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 13:58:01 trom CRON[15528]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 14:00:01 trom CRON[16349]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 14:00:01 trom CRON[16350]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 14:00:01 trom CRON[16354]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 14:02:01 trom CRON[17901]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 14:04:01 trom CRON[18883]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 14:05:01 trom CRON[19422]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 14:06:01 trom CRON[20000]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 14:08:01 trom CRON[21086]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 14:09:01 trom CRON[21606]: (root) CMD ( [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessionclean; fi)
Feb 26 14:10:01 trom CRON[21966]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 14:10:01 trom CRON[21969]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 14:12:01 trom CRON[22981]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 14:14:01 trom CRON[23756]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 14:15:01 trom CRON[24110]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 14:15:01 trom CRON[24111]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 14:16:01 trom CRON[24505]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 14:17:01 trom CRON[24885]: (root) CMD ( cd / && run-parts --report /etc/cron.hourly)
Feb 26 14:18:01 trom CRON[25257]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 14:20:01 trom CRON[26098]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 14:20:01 trom CRON[26097]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 14:20:01 trom CRON[26101]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 14:22:01 trom CRON[27699]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 14:24:01 trom CRON[28834]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 14:25:01 trom CRON[29852]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
Feb 26 14:25:01 trom CRON[29854]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
Feb 26 14:26:01 trom CRON[30299]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 14:28:01 trom CRON[31460]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 14:30:01 trom CRON[32202]: (root) CMD (yunohost dyndns update >> /dev/null)
Feb 26 14:30:01 trom CRON[32201]: (friendica) CMD (cd /var/www/friendica; /usr/bin/php7.3 bin/worker.php)
Feb 26 14:30:01 trom CRON[32203]: (nextcloud) CMD (/usr/bin/php7.3 -f /var/www/nextcloud/cron.php)
After many tests, I made a new file in cron.d called "backups" and added this to it:
20 15 * * * root /opt/yunohost/archivist/archivist.sh
Witht that it works just fine. So probably the 15 15 * * * root nice -n10 /opt/yunohost/archivist/archivist.sh | tee -a /var/log/archivist/archivist.log 2>&1
is the problem. Of course the time is not important, I tried with different time inputs. So yah....the root /opt/yunohost/archivist/archivist.sh
is working, but not the root nice -n10 /opt/yunohost/archivist/archivist.sh | tee -a /var/log/archivist/archivist.log 2>&1
You have any idea why?
It is weird because root nice -n10 /opt/yunohost/archivist/archivist.sh | tee -a /var/log/archivist/archivist.log 2>&1
works in the terminal. But not working in the cron file...
root nice -n10 /opt/yunohost/archivist/archivist.sh | tee -a /var/log/archivist/archivist.log 2>&1
is exactly my cron task, and it works just fine.
We're ok that your cron was in /etc/cron.d/
and named archivist
?
Also, reading the man, no other characters than :alnum:, -
and _
, especially no dot. (By the way, I just understood why one of my cron task wasn't working properly... It had a dot in its filename and was probably not starting at all...)
Appears also the file should be own by root and not be writable by group and other. Not sure if it apply to cron.d as well though.
Ok we finally cracked it! It was the permission thing. Now all works just fine. Damn. So it had 0777 permission and should have been 0755. I did not change the permission to that file so it is strange. Thanks for all the input! Damn this was weird.
So the symbolic links work perfectly fine btw. What is your plan, update the ynh archivist app?
It may be a silly question, but how to restore these backups?