apoorva 9d13daf490 Add 'yolov7/' from commit '2fdc7f14395f6532ad05fb3e6970150a6a83d290'
git-subtree-dir: yolov7
git-subtree-mainline: 19a8fee75d3bfbbb870049d5cb18c45036bd0283
git-subtree-split: 2fdc7f14395f6532ad05fb3e6970150a6a83d290
2023-02-21 21:35:10 +05:30

27 lines
780 B
Bash

# AWS EC2 instance startup 'MIME' script https://aws.amazon.com/premiumsupport/knowledge-center/execute-user-data-ec2/
# This script will run on every instance restart, not only on first start
# --- DO NOT COPY ABOVE COMMENTS WHEN PASTING INTO USERDATA ---
Content-Type: multipart/mixed; boundary="//"
MIME-Version: 1.0
--//
Content-Type: text/cloud-config; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="cloud-config.txt"
#cloud-config
cloud_final_modules:
- [scripts-user, always]
--//
Content-Type: text/x-shellscript; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="userdata.txt"
#!/bin/bash
# --- paste contents of userdata.sh here ---
--//