Compare commits

..

No commits in common. "d99860148b4bb5d47d48794f55c9fdd6ecba8b95" and "54647e5c198fe97d6863b9288c49d9d827d5f8a8" have entirely different histories.

3 changed files with 57 additions and 9 deletions

View File

@ -20,7 +20,7 @@ foreach($dirs as $dir){
$code = str_replace("{{ COMMANDS }}", implode("\n", $codes), $base);
try {
$file = __DIR__.'/wx.tmp';
$file = __DIR__.'/wx';
$file = fopen($file, "w");
fwrite($file, $code);
fclose($file);

View File

@ -24,7 +24,6 @@ warencli-syntax-line-douple
}
warencli-stop () {
echo " "
echo " "
exit 1
}
@ -32,9 +31,7 @@ warencli-stop () {
warencli-update() {
if [[ -d "./src" ]]; then
echo ">>> Building... <<<"
podman run -it --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp docker.io/library/php:8-cli php generator.php &> /dev/null
mv wx.tmp wx
chmod +x wx
podman run -it --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp docker.io/library/php:8-cli php generator.php
else
echo ">>> Updating... <<<"
sudo curl https://git.waren.io/warengroup/wx/raw/branch/master/wx -o /opt/wx &> /dev/null
@ -45,6 +42,8 @@ else
fi
}
{{ COMMANDS }}
COMMAND=$1
warencli-start

57
wx
View File

@ -24,7 +24,6 @@ warencli-syntax-line-douple
}
warencli-stop () {
echo " "
echo " "
exit 1
}
@ -32,9 +31,7 @@ warencli-stop () {
warencli-update() {
if [[ -d "./src" ]]; then
echo ">>> Building... <<<"
podman run -it --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp docker.io/library/php:8-cli php generator.php &> /dev/null
mv wx.tmp wx
chmod +x wx
podman run -it --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp docker.io/library/php:8-cli php generator.php
else
echo ">>> Updating... <<<"
sudo curl https://git.waren.io/warengroup/wx/raw/branch/master/wx -o /opt/wx &> /dev/null
@ -45,6 +42,58 @@ else
fi
}
warencli-help() {
echo "
Usage: $0 COMMAND [OPTIONS]
Common Commands:
ssh SSH
config Config
sign Certificates
Authentication Commands:
login Login
logout Logout
Management Commands:
settings Settings
Maintenance Commands:
install Install
update Update
";
}
warencli-install() {
echo ">>> Install";
}
warencli-settings() {
echo ">>> Settings";
}
warencli-ssh() {
echo ">>> SSH";
}
warencli-login() {
echo ">>> Authentication: Login";
}
warencli-logout() {
echo ">>> Authentication: Logout";
}
warencli-ssh-config(){
echo ">>> SSH: Config"
}
warencli-ssh-sign(){
echo ">>> SSH: Certificates"
}
COMMAND=$1
warencli-start