9 lines
101 B
Bash
Executable File
9 lines
101 B
Bash
Executable File
#!/bin/sh
|
|
# start_crond.sh
|
|
|
|
# Activer le venv
|
|
source venv/bin/activate
|
|
|
|
# Lancer crond
|
|
exec crond -f
|