about summary refs log tree commit diff
path: root/src/libutil/immutable.hh
blob: 8af41900490fa886026d95357fc037d282850111 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include <types.hh>

namespace nix {

/* Make the given path immutable, i.e., prevent it from being modified
   in any way, even by root.  This is a no-op on platforms that do not
   support this, or if the calling user is not privileged.  On Linux,
   this is implemented by doing the equivalent of ‘chattr +i path’. */
void makeImmutable(const Path & path);

/* Make the given path mutable. */
void makeMutable(const Path & path);

}