mirror of
https://github.com/netbox-community/netbox.git
synced 2026-05-06 22:12:43 +08:00
8 lines
93 B
Bash
Executable File
8 lines
93 B
Bash
Executable File
#!/bin/sh
|
|
|
|
DB=${2:-netbox}
|
|
|
|
# Dump the database to a file
|
|
sudo -u postgres pg_dump $DB > $1
|
|
|