mirror of
https://github.com/davidallendj/magellan.git
synced 2025-12-20 03:27:03 -07:00
17 lines
355 B
Bash
17 lines
355 B
Bash
|
|
function build(){
|
|
go mod tidy && go build -C bin/magellan
|
|
}
|
|
|
|
function scan() {
|
|
./magellan scan --subnet 172.16.0.0 --db.path data/assets.db --port 623
|
|
}
|
|
|
|
function list(){
|
|
./magellan list --db.path data/assets.db
|
|
}
|
|
|
|
function collect() {
|
|
./magellan collect --db.path data/assets.db --driver ipmi --timeout 5 --user admin --pass password
|
|
}
|
|
|