• This project
    • Loading...
  • Sign in

홍길동 / onos

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • onos
  • utils
  • warden
  • bin
  • destroy-cell
  • Thomas Vachuska's avatar
    Modified warden to create borrowed cells on-demand and to scrap returned ones. · e91541fa ...
    e91541fa
    Change-Id: If32a0da18ff9d4c05645017e5cc7481bbd1ab0cd
    Thomas Vachuska authored 2016-05-06 14:58:35 +0000
destroy-cell 165 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12
#!/bin/bash
# Destroys an LXC cell with the specified name.

name=$1

cd $(dirname $0)

./destroy-node $name-n

for n in {1..3}; do
    ./destroy-node $name-$n
done