mirror of
https://github.com/ceph/ceph
synced 2024-12-14 23:46:28 +00:00
3aae5ca6fd
/bin/bash is a Linuxism. Other operating systems install bash to different paths. Use /usr/bin/env in shebangs to find bash. Signed-off-by: Alan Somers <asomers@gmail.com>
12 lines
164 B
YAML
12 lines
164 B
YAML
- |
|
|
#!/usr/bin/env bash
|
|
cp /var/log/cloud-init-output.log /mnt/log
|
|
|
|
- |
|
|
#!/usr/bin/env bash
|
|
umount /mnt/log
|
|
|
|
- |
|
|
#!/usr/bin/env bash
|
|
shutdown -h -P now
|