Ubuntu Trigger 支持在文件修改時觸發任務。具體來說,可以通過配置文件中的規則來監視特定文件的更改,如修改操作。以下是一個簡單的示例配置文件,展示了如何設置文件系統觸發器:
trigger:
name: "example-trigger"
description: "An example trigger for demonstrating the structure of a Trigger configuration file."
rules:
- id: "rule2"
description: "Rule 2: Trigger when a specific file is modified."
condition:
type: "file"
path: "/path/to/your/file"
event: "modified"
action:
type: "email"
recipient: "your-email@example.com"
subject: "File modification alert"
body: "The file /path/to/your/file has been modified."
在這個示例中,當 /path/to/your/file
文件被修改時,會觸發一個電子郵件通知。
請注意,以上信息基于搜索結果得出,可能并不全面。為了獲取最準確和最新的信息,建議查閱Ubuntu Trigger的官方文檔或相關社區資源。