From 409a342513f3a6c752786dfd3a8a2e8bbb0a9912 Mon Sep 17 00:00:00 2001 From: Radostin Stoyanov Date: Sat, 26 Aug 2017 21:42:12 +0100 Subject: Show warning for unprivileged users Show warning message and don't allow ownership mapping for non-root user when the output format is 'dir'. --- src/virtBootstrap/virt_bootstrap.py | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src') diff --git a/src/virtBootstrap/virt_bootstrap.py b/src/virtBootstrap/virt_bootstrap.py index 2ff1b4b..9190e80 100755 --- a/src/virtBootstrap/virt_bootstrap.py +++ b/src/virtBootstrap/virt_bootstrap.py @@ -109,6 +109,13 @@ def bootstrap(uri, dest, """ Get source object and call unpack method """ + if fmt == 'dir' and os.geteuid() != 0: + if uid_map or gid_map: + raise ValueError("UID/GID mapping with 'dir' format is " + "allowed only for root.") + logger.warning("All extracted files will be owned by the current " + "unprivileged user.") + # Get instance of progress storing module prog = progress.Progress(progress_cb) -- cgit