10 lines
295 B
Bash
10 lines
295 B
Bash
#!/bin/sh
|
|
|
|
# DigitalOcean Marketplace Image Validation Tool
|
|
# © 2021 DigitalOcean LLC.
|
|
# This code is licensed under Apache 2.0 license (see LICENSE.md for details)
|
|
|
|
cat >> /etc/ssh/sshd_config <<EOM
|
|
Match User root
|
|
ForceCommand echo "Please wait while we get your droplet ready..."
|
|
EOM |