11 lines
232 B
Plaintext
11 lines
232 B
Plaintext
|
function auto_topology_start {
|
||
|
# Add topology_submit to crontab
|
||
|
echo "Starting crontab."
|
||
|
cp /cfg-templates/crontab /crontab
|
||
|
service cron start
|
||
|
crontab /crontab
|
||
|
|
||
|
# Update topology.json
|
||
|
topology_update 1
|
||
|
}
|