Skip to content
This repository has been archived by the owner on Feb 25, 2021. It is now read-only.

Commit

Permalink
Merge pull request #45 from TrixterTheTux/patch-1
Browse files Browse the repository at this point in the history
Fix for #593
DaneEveritt authored Aug 17, 2017
2 parents 6acd830 + bf5ebf1 commit b83c5b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -113,11 +113,11 @@ Async.auto({
Log.info('Configuring timezone file location...');
Timezone.configure(callback);
}],
setup_network: ['check_network', (r, callback) => {
setup_network: ['check_network', 'setup_timezone', (r, callback) => {
Log.info('Checking pterodactyl0 interface and setting configuration values.');
Network.interface(callback);
}],
start_sftp: ['setup_network', 'setup_timezone', (r, callback) => {
start_sftp: ['setup_network', (r, callback) => {
Log.info('Attempting to start SFTP service container...');
SFTP.startService(err => {
if (err) return callback(err);

0 comments on commit b83c5b4

Please sign in to comment.