2
我通過工頭導出了一個暴發戶腳本,並且在.conf文件中添加了一行以在過程重新啓動時發送電子郵件。但是,當我終止測試功能的過程時,它會通過超過20封電子郵件來收發我的收件箱。有誰知道是否有更高效的方法來做到這一點,還是我SOL?暴發戶電子郵件通知
start on starting square-web
stop on stopping square-web
respawn
exec su - deployer -c 'cd /rails/square; echo "Thin 5000 restarted on square.local" | mail [email protected]; export PORT=5000; export RAILS_ENV=production; rails s thin -p $PORT >> /var/log/square/web-1.log 2>&1'