Page 1 of 1

Start Asterisk wih option -vvvgc

PostPosted: Fri Feb 13, 2015 4:35 pm
by saulortega
Hello.

How can I to do that Asterisk runs with option -vvvgc after every reboot?

Re: Start Asterisk wih option -vvvgc

PostPosted: Sat Feb 14, 2015 12:11 am
by chasejordan1
You can set up a cronjob.

30 6 * * * /usr/sbin/asterisk -vvvvgc


This should restart asterisk at 6 30 am every morning. You can test it in the command line and if it works then just put it into crontab and set the time.

Hope this helps.

Re: Start Asterisk wih option -vvvgc

PostPosted: Mon Feb 16, 2015 2:57 am
by DomeDan
it is started with -vvvvgcT by default

it starts with /etc/init.d/vicidial
which executes /usr/share/astguiclient/start_asterisk_boot.pl at boot

Re: Start Asterisk wih option -vvvgc

PostPosted: Tue Feb 17, 2015 9:01 am
by saulortega
DomeDan wrote:it is started with -vvvvgcT by default

it starts with /etc/init.d/vicidial
which executes /usr/share/astguiclient/start_asterisk_boot.pl at boot
Yes, thanck you.