SLBR/deluser.sh

7 lines
87 B
Bash
Executable File

#!/bin/sh
USER=$1
lxc stop $USER
sudo rm -rf $USER
sudo userdel $USER
lxc delete $USER