forked from lix-project/lix
Deletes build users and group
This commit is contained in:
parent
c9eee5a84d
commit
a3a0e414c2
|
@ -120,10 +120,10 @@ sudo rm -rf /nix /etc/nix /etc/profile/nix.sh ~root/.nix-profile ~root/.nix-defe
|
||||||
Remove build users and their group:
|
Remove build users and their group:
|
||||||
|
|
||||||
```console
|
```console
|
||||||
for i in $(seq 30001 30032); do
|
for i in $(seq 1 32); do
|
||||||
sudo userdel $i
|
sudo userdel nixbld$i
|
||||||
done
|
done
|
||||||
sudo groupdel 30000
|
sudo groupdel nixbld
|
||||||
```
|
```
|
||||||
|
|
||||||
There may also be references to Nix in
|
There may also be references to Nix in
|
||||||
|
|
Loading…
Reference in a new issue