this post was submitted on 25 Jul 2023
1 points (66.7% liked)

Linux

45573 readers
668 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

Hello together. I try to use a systemd path unit, to monitor a directory structure. But as of now, I was only successful for the top level directory. The unit should be triggered, if a new file is written to either the top level of the monitored directory and also, if there is a new file in any of its subdirectories. I don't know how to do that. Any ideas?

Additionally, the triggered service unit should be delayed for some time. Background is, that I automatically upload sometimes more than one file in a batch. So I will give the script triggered by the service unit the chance, to wait until the upload of all files is finished, so that I can work with all the new files with one script call, instead of multiple calls for every file. Is that possible?

top 4 comments
sorted by: hot top controversial new old
[–] [email protected] 1 points 11 months ago

I find incrond works way better.

[–] [email protected] 1 points 11 months ago

maybe try inotify?

[–] [email protected] 1 points 11 months ago (1 children)

Are you sure this is the most efficient way to accomplish the goal?

Resilio Sync will just sync files to different locations automatically.. You don't need to worry about firewall rules or DNS/IP addresses doing this either..

[–] [email protected] 1 points 11 months ago

Since the script I'm talking about, makes some changes to the synced files, this is not a job for Resilio Sync. For the sync job itself, I'm using SFTP, because this is the easiest to setup on all clients/platforms. I'm only interested how I could safely dedect, if the sync is finished and start the script to do it's job's. The tip with the changing file is nice. I'm using that for now. Absolute reliable so far, for this task.