From ae41a0e76ec9caa9408c7bd1cc20fa7724942903 Mon Sep 17 00:00:00 2001 From: Jakob Schrettenbrunner Date: Sat, 1 Jul 2017 19:26:05 +0200 Subject: [PATCH] move git repo to github.com/Pterodactyl/wings --- .dev/vagrant/motd.txt | 2 +- .dev/vagrant/provision.sh | 4 ++-- Vagrantfile | 2 +- command/root.go | 6 +++--- control/service.go | 2 +- glide.yaml | 2 +- main.go | 2 +- tools/logging.go | 2 +- 8 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.dev/vagrant/motd.txt b/.dev/vagrant/motd.txt index f51c07d..39c0731 100644 --- a/.dev/vagrant/motd.txt +++ b/.dev/vagrant/motd.txt @@ -2,7 +2,7 @@ Pterodactyl go Daemon Vagrant VM Gopath: /home/ubuntu/go -Daemon: /home/ubuntu/go/src/github.com/schrej/wings.go +Daemon: /home/ubuntu/go/src/github.com/Pterodactyl/wings.go Data: /srv/daemon-data ##################################################### diff --git a/.dev/vagrant/provision.sh b/.dev/vagrant/provision.sh index b077571..592b447 100644 --- a/.dev/vagrant/provision.sh +++ b/.dev/vagrant/provision.sh @@ -1,7 +1,7 @@ #!/bin/bash echo "Provisioning development environment for Pterodactyl go daemon." -cp /home/ubuntu/go/github.com/schrej/wings.go/.dev/vagrant/motd.txt /etc/motd +cp /home/ubuntu/go/github.com/Pterodactyl/wings.go/.dev/vagrant/motd.txt /etc/motd chown -R ubuntu:ubuntu /home/ubuntu/go @@ -27,5 +27,5 @@ apt-get -y install mercurial #tar unzip make gcc g++ python > /dev/null echo " ------------" echo "Gopath is /home/ubuntu/go" -echo "The project is mounted to /home/ubuntu/go/src/github.com/schrej/wings.go" +echo "The project is mounted to /home/ubuntu/go/src/github.com/Pterodactyl/wings.go" echo "Provisioning is completed." diff --git a/Vagrantfile b/Vagrantfile index efcec70..8656ee4 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -1,7 +1,7 @@ Vagrant.configure("2") do |cfg| cfg.vm.box = "ubuntu/xenial64" - cfg.vm.synced_folder "./", "/home/ubuntu/go/src/github.com/schrej/wings" + cfg.vm.synced_folder "./", "/home/ubuntu/go/src/github.com/Pterodactyl/wings" cfg.vm.provision :shell, path: ".dev/vagrant/provision.sh" diff --git a/command/root.go b/command/root.go index 920b1b5..97b54a8 100644 --- a/command/root.go +++ b/command/root.go @@ -3,9 +3,9 @@ package command import ( "fmt" - "github.com/schrej/wings/api" - "github.com/schrej/wings/config" - "github.com/schrej/wings/tools" + "github.com/Pterodactyl/wings/api" + "github.com/Pterodactyl/wings/config" + "github.com/Pterodactyl/wings/tools" log "github.com/sirupsen/logrus" "github.com/spf13/cobra" ) diff --git a/control/service.go b/control/service.go index 127f097..8a65632 100644 --- a/control/service.go +++ b/control/service.go @@ -1,6 +1,6 @@ package control -import "github.com/schrej/wings/control/environments" +import "github.com/Pterodactyl/wings/control/environments" type Service struct { Environment environments.Environment diff --git a/glide.yaml b/glide.yaml index 3a9362a..57d3f38 100644 --- a/glide.yaml +++ b/glide.yaml @@ -1,4 +1,4 @@ -package: github.com/schrej/wings +package: github.com/Pterodactyl/wings import: - package: github.com/gin-gonic/gin version: ~1.1.4 diff --git a/main.go b/main.go index 8d513d8..68f8c0e 100644 --- a/main.go +++ b/main.go @@ -4,7 +4,7 @@ import ( "fmt" "os" - "github.com/schrej/wings/command" + "github.com/Pterodactyl/wings/command" ) func main() { diff --git a/tools/logging.go b/tools/logging.go index 5ced500..773c06f 100644 --- a/tools/logging.go +++ b/tools/logging.go @@ -7,7 +7,7 @@ import ( "github.com/rifflock/lfshook" log "github.com/sirupsen/logrus" - "github.com/schrej/wings/config" + "github.com/Pterodactyl/wings/config" ) // ConfigureLogging configures logrus to our needs