move git repo to github.com/Pterodactyl/wings
This commit is contained in:
parent
a2d741c13a
commit
ae41a0e76e
|
@ -2,7 +2,7 @@
|
||||||
Pterodactyl go Daemon Vagrant VM
|
Pterodactyl go Daemon Vagrant VM
|
||||||
|
|
||||||
Gopath: /home/ubuntu/go
|
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
|
Data: /srv/daemon-data
|
||||||
|
|
||||||
#####################################################
|
#####################################################
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
echo "Provisioning development environment for Pterodactyl go daemon."
|
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
|
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 " ------------"
|
||||||
echo "Gopath is /home/ubuntu/go"
|
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."
|
echo "Provisioning is completed."
|
||||||
|
|
2
Vagrantfile
vendored
2
Vagrantfile
vendored
|
@ -1,7 +1,7 @@
|
||||||
Vagrant.configure("2") do |cfg|
|
Vagrant.configure("2") do |cfg|
|
||||||
cfg.vm.box = "ubuntu/xenial64"
|
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"
|
cfg.vm.provision :shell, path: ".dev/vagrant/provision.sh"
|
||||||
|
|
||||||
|
|
|
@ -3,9 +3,9 @@ package command
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/schrej/wings/api"
|
"github.com/Pterodactyl/wings/api"
|
||||||
"github.com/schrej/wings/config"
|
"github.com/Pterodactyl/wings/config"
|
||||||
"github.com/schrej/wings/tools"
|
"github.com/Pterodactyl/wings/tools"
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
)
|
)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
package control
|
package control
|
||||||
|
|
||||||
import "github.com/schrej/wings/control/environments"
|
import "github.com/Pterodactyl/wings/control/environments"
|
||||||
|
|
||||||
type Service struct {
|
type Service struct {
|
||||||
Environment environments.Environment
|
Environment environments.Environment
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package: github.com/schrej/wings
|
package: github.com/Pterodactyl/wings
|
||||||
import:
|
import:
|
||||||
- package: github.com/gin-gonic/gin
|
- package: github.com/gin-gonic/gin
|
||||||
version: ~1.1.4
|
version: ~1.1.4
|
||||||
|
|
2
main.go
2
main.go
|
@ -4,7 +4,7 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
"github.com/schrej/wings/command"
|
"github.com/Pterodactyl/wings/command"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
|
|
@ -7,7 +7,7 @@ import (
|
||||||
"github.com/rifflock/lfshook"
|
"github.com/rifflock/lfshook"
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
|
|
||||||
"github.com/schrej/wings/config"
|
"github.com/Pterodactyl/wings/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
// ConfigureLogging configures logrus to our needs
|
// ConfigureLogging configures logrus to our needs
|
||||||
|
|
Loading…
Reference in New Issue
Block a user