Last active
January 8, 2018 13:26
-
-
Save sameo/6cb675f94ba11f3f9be2cbb5685fb068 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -e -v | |
| losetup /dev/loop2 /usr/share/clear-containers/clear-containers.img -o $((2048*512)) | |
| mount /dev/loop2 $2 | |
| cp $1 $2/usr/bin/cc-agent | |
| umount $2 | |
| losetup -d /dev/loop2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment