Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cmds/modules/netlightd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ import (
"github.com/threefoldtech/zosbase/pkg/netlight/ifaceutil"
"github.com/threefoldtech/zosbase/pkg/netlight/public"
"github.com/threefoldtech/zosbase/pkg/netlight/resource"
"github.com/threefoldtech/zosbase/pkg/network" // import network just for cleanup orphaned namespaces
"github.com/urfave/cli/v2"

"github.com/cenkalti/backoff/v3"
Expand Down Expand Up @@ -79,7 +78,8 @@ func action(cli *cli.Context) error {

waitMyceliumBin()

network.CleanupOrphanedNamespaces()
// Note: disabled; not needed anymore, namespaces are cleaned up while deprovisioning
// network.CleanupOrphanedNamespaces()

if err := bootstrap.DefaultBridgeValid(); err != nil {
return errors.Wrap(err, "invalid setup")
Expand Down
2 changes: 1 addition & 1 deletion qemu/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ net:

run:
@echo "Running your node"
sudo ./vm.sh -g -n node-02 -c "farmer_id=$(id) version=v3 printk.devmsg=on runmode=dev nomodeset ssh-user=$(user)"
sudo ./vm.sh -m 8 -n node-02 -c "farmer_id=$(id) version=v3 printk.devmsg=on runmode=dev nomodeset ssh-user=$(user)"