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