mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-25 15:26:17 +02:00
Deletes build users and group
This commit is contained in:
parent
c9eee5a84d
commit
a3a0e414c2
1 changed files with 3 additions and 3 deletions
|
@ -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