core-admin/qubes/tools/qvm_remove.py
Bahtiar `kalkin-` Gadimov 8959e5a77e
Implement qvm-remove
- Remove old qvm-remove
- Remove a log line from Storage, because it prints confusing lines, like:
    Removing volume kernel: /var/lib/qubes/vm-kernels/4.1.13-6/modules.img
2016-05-21 01:35:30 +02:00

53 lines
1.6 KiB
Python

#!/usr/bin/env python2
# -*- encoding: utf8 -*-
#
# The Qubes OS Project, http://www.qubes-os.org
#
# Copyright (C) 2016 Bahtiar `kalkin-` Gadimov <bahtiar@gadimov.de>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
''' Remove domains from the system '''
from __future__ import print_function
import sys
from qubes.tools import QubesArgumentParser
parser = QubesArgumentParser(description=__doc__,
want_app=True,
want_force_root=True,
vmname_nargs='+')
parser.add_argument('--just-db',
action='store_true',
help='Remove only from db, don\'t remove files')
def main(args=None): # pylint: disable=missing-docstring
args = parser.parse_args(args)
for vm in args.domains:
del args.app.domains[vm.qid]
args.app.save()
if not args.just_db:
vm.remove_from_disk()
return 0
if __name__ == '__main__':
sys.exit(main())