mirror of
https://github.com/inspec/inspec
synced 2024-12-18 17:14:33 +00:00
10 lines
234 B
Bash
Executable file
10 lines
234 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# install latest inspec
|
|
gem install inspec.gem
|
|
# use force to overwrite the binary
|
|
gem install inspec-mock.gem --force
|
|
|
|
# prep environment
|
|
apk add --update openssh
|
|
sed -i '/# Protocol 2/c\Protocol 2' /etc/ssh/ssh_config
|