mirror of
https://github.com/status-im/nimbus-eth2.git
synced 2025-01-09 22:06:21 +00:00
10 lines
146 B
Plaintext
10 lines
146 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
rm -rf /var/lib/nimbus
|
||
|
|
||
|
if id -u nimbus > /dev/null 2>&1; then
|
||
|
userdel nimbus # userdel will also delete the nimbus group
|
||
|
fi
|