10 lines
176 B
Bash
Executable File
10 lines
176 B
Bash
Executable File
#!/bin/bash
|
|
|
|
ssh -F /dev/null \
|
|
-o HostName=10.88.0.1 \
|
|
-o Port=22 \
|
|
-o User=infilytics \
|
|
-o IdentityFile=~/.ssh/id_ed25519 \
|
|
-o ProxyCommand=none \
|
|
gitops -- "$@"
|