6 lines
201 B
Bash
6 lines
201 B
Bash
|
#!/bin/bash
|
||
|
# module will install the uci-shell system on a remote machine
|
||
|
# must be run as sudo
|
||
|
mkdir -p /shell
|
||
|
chown 1000:users /shell
|
||
|
git clone https://git.kebler.net/base/shell-base.git /shell/base
|