summaryrefslogtreecommitdiff
path: root/doc/HACKING
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2018-03-22 15:36:01 +0100
committerGitHub <noreply@github.com>2018-03-22 15:36:01 +0100
commitc8475a8f8e2fb7f5cd42461625cbafc08de43c16 (patch)
treecfd56dc203ec625e0b0c62bcb43ea15a311f9ebf /doc/HACKING
parent1d0b60c48119b28280d534249368a002b1a8d6c9 (diff)
downloadsystemd-c8475a8f8e2fb7f5cd42461625cbafc08de43c16.tar.gz
HACKING: small umask tweak for the rootpw (#8541)
Diffstat (limited to 'doc/HACKING')
-rw-r--r--doc/HACKING2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/HACKING b/doc/HACKING
index 51ff60d175..92001be94e 100644
--- a/doc/HACKING
+++ b/doc/HACKING
@@ -68,7 +68,7 @@ for systemd (this example is for Fedora):
$ meson build # configure the build
$ ninja -C build # build it locally, see if everything compiles fine
$ ninja -C build test # run some simple regression tests
- $ echo root123 > mkosi.rootpw # set root password used by mkosi
+ $ (umask 077; echo 123 > mkosi.rootpw) # set root password used by mkosi
$ sudo mkosi # build a test image
$ sudo systemd-nspawn -bi image.raw # boot up the test image
$ git add -p # interactively put together your patch