9 lines
200 B
Bash
9 lines
200 B
Bash
|
#!/usr/bin/env sh
|
||
|
# ensure permissions
|
||
|
chown sqlproxy:sqlproxy /etc/ssh
|
||
|
chown -R sqlproxy:sqlproxy /etc/ssh/.ssh
|
||
|
chmod 0700 /etc/ssh/.ssh
|
||
|
chmod 0600 /etc/ssh/.ssh/authorized_keys
|
||
|
|
||
|
source ./hostman.sh
|