X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fmachine-id-setup.c;h=65792e9b842357b2f0b87e1f08403a64a094ddb4;hp=0ec61924492e3060321f4e745243264f29de0c8c;hb=d68201e9aa5e9ebd6085b1bb8892c42e9d20be75;hpb=9b4f818bd8dd45029992f844d07a61c9977da720 diff --git a/src/machine-id-setup.c b/src/machine-id-setup.c index 0ec619244..65792e9b8 100644 --- a/src/machine-id-setup.c +++ b/src/machine-id-setup.c @@ -91,7 +91,12 @@ int machine_id_setup(void) { m = umask(0000); - if ((fd = open("/etc/machine-id", O_RDWR|O_CREAT|O_CLOEXEC|O_NOCTTY, 0644)) >= 0) + /* We create this 0444, to indicate that this isn't really + * something you should ever modify. Of course, since the file + * will be owned by root it doesn't matter much, but maybe + * people look. */ + + if ((fd = open("/etc/machine-id", O_RDWR|O_CREAT|O_CLOEXEC|O_NOCTTY, 0444)) >= 0) writable = true; else { if ((fd = open("/etc/machine-id", O_RDONLY|O_CLOEXEC|O_NOCTTY)) < 0) {