Missing arguments in async callback

This commit is contained in:
Petros Angelatos 2013-07-21 14:31:59 +01:00
parent 3c49f64dbc
commit fff9148a83

View File

@ -42,7 +42,8 @@ bootstrapTasks = [
(callback) ->
console.log('Starting VPN client..')
exec('systemctl start openvpn@client', callback)
(callback) ->
(stdout, stderr, callback) ->
console.log('Enabling VPN client..')
exec('systemctl enable openvpn@client', callback)
]