remove foodie_engagement_tweet
This commit is contained in:
+7
-6
@@ -45,6 +45,7 @@ run_script() {
|
|||||||
local script_name="${script%.py}"
|
local script_name="${script%.py}"
|
||||||
local script_log="$LOG_DIR/${script_name}.log"
|
local script_log="$LOG_DIR/${script_name}.log"
|
||||||
if check_running "$script_name"; then
|
if check_running "$script_name"; then
|
||||||
|
echo "0" # Skip sleep
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
log "Running $script..."
|
log "Running $script..."
|
||||||
@@ -66,8 +67,8 @@ run_script() {
|
|||||||
|
|
||||||
stop_scripts() {
|
stop_scripts() {
|
||||||
log "Stopping scripts..."
|
log "Stopping scripts..."
|
||||||
for script in foodie_automator_*.py foodie_engagement_tweet.py; do
|
for script in foodie_automator_rss.py foodie_automator_reddit.py foodie_automator_google.py; do
|
||||||
if [ -f "$script" ] && [ "$script" != "foodie_weekly_thread.py" ]; then
|
if [ -f "$script" ]; then
|
||||||
local script_name="${script%.py}"
|
local script_name="${script%.py}"
|
||||||
if pkill -TERM -f "$VENV_PYTHON.*$script_name"; then
|
if pkill -TERM -f "$VENV_PYTHON.*$script_name"; then
|
||||||
log "Sent TERM to $script_name"
|
log "Sent TERM to $script_name"
|
||||||
@@ -128,10 +129,10 @@ if [ "$1" == "start" ]; then
|
|||||||
log "Error: .env file not found"
|
log "Error: .env file not found"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
for script in foodie_automator_rss.py foodie_automator_reddit.py foodie_automator_google.py foodie_engagement_tweet.py; do
|
for script in foodie_automator_rss.py foodie_automator_reddit.py foodie_automator_google.py; do
|
||||||
if [ -f "$script" ]; then
|
if [ -f "$script" ]; then
|
||||||
sleep_time=$(run_script "$script" | tail -n 1)
|
sleep_time=$(run_script "$script" | tail -n 1)
|
||||||
if [ -n "$sleep_time" ]; then
|
if [ "$sleep_time" != "0" ]; then
|
||||||
log "Sleeping for $sleep_time seconds after $script"
|
log "Sleeping for $sleep_time seconds after $script"
|
||||||
sleep "$sleep_time"
|
sleep "$sleep_time"
|
||||||
fi
|
fi
|
||||||
@@ -179,10 +180,10 @@ else
|
|||||||
log "Error: .env file not found"
|
log "Error: .env file not found"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
for script in foodie_automator_rss.py foodie_automator_reddit.py foodie_automator_google.py foodie_engagement_tweet.py; do
|
for script in foodie_automator_rss.py foodie_automator_reddit.py foodie_automator_google.py; do
|
||||||
if [ -f "$script" ]; then
|
if [ -f "$script" ]; then
|
||||||
sleep_time=$(run_script "$script" | tail -n 1)
|
sleep_time=$(run_script "$script" | tail -n 1)
|
||||||
if [ -n "$sleep_time" ]; then
|
if [ "$sleep_time" != "0" ]; then
|
||||||
log "Sleeping for $sleep_time seconds after $script"
|
log "Sleeping for $sleep_time seconds after $script"
|
||||||
sleep "$sleep_time"
|
sleep "$sleep_time"
|
||||||
fi
|
fi
|
||||||
|
|||||||
Reference in New Issue
Block a user