feat(ssh): add ssh server start/stop cmd

This commit is contained in:
2026-02-22 16:48:23 +02:00
parent 5c393953f0
commit 1443fd7093

View File

@@ -0,0 +1,7 @@
function ssh-server-start() {
sudo systemsetup -setremotelogin on
}
function ssh-server-stop() {
sudo systemsetup -setremotelogin off
}