pmbootstrap: Disallow running as root (#1120)

This commit is contained in:
Oliver Smith 2018-01-14 08:13:35 +00:00 committed by GitHub
parent 1992f37036
commit 4715c0f1bf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View file

@ -171,6 +171,10 @@ def arguments():
" cause normal 'are you sure?' prompts to be"
" disabled!",
action="store_true")
parser.add_argument("--as-root", help="Allow running as root (not"
" recommended, may screw up your work folders"
" directory permissions!)", dest="as_root",
action="store_true")
# Logging
parser.add_argument("-l", "--log", dest="log", default=None,