Difference between revisions of "Lxc one liners"
Jump to navigation
Jump to search
(Created page with "``` for i in $(lxc list --format=json | jq --raw-output '.[].name'); do echo $i; lxc stop $i; lxc config set $i boot.autostart false; done ```") |
(No difference)
|
Revision as of 20:41, 22 August 2021
for i in $(lxc list --format=json | jq --raw-output '.[].name'); do echo $i; lxc stop $i; lxc config set $i boot.autostart false; done