mirror of
https://github.com/Adam-Ant/DroneAgentBuilder
synced 2024-11-05 08:46:23 +00:00
19 lines
358 B
Bash
19 lines
358 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
source /etc/os-release
|
||
|
|
||
|
cat << EOF > /etc/motd
|
||
|
|
||
|
$PRETTY_NAME ($VERSION_ID) Docker Host
|
||
|
|
||
|
Built as a CI runner for Docker-based CI platforms
|
||
|
such as Drone-CI https://github.com/drone/drone
|
||
|
|
||
|
See the Alpine Wiki for how-to guides and
|
||
|
general information about administrating
|
||
|
Alpine systems and development.
|
||
|
See <http://wiki.alpinelinux.org>
|
||
|
|
||
|
EOF
|
||
|
|