Signed-off-by: Jeroen Oudshoorn <oudshoorn.jeroen@gmail.com>
This commit is contained in:
Jeroen Oudshoorn
2023-09-29 10:16:39 +02:00
parent 781e2a616b
commit f4f04a9cc1
2 changed files with 9 additions and 0 deletions

View File

@ -87,6 +87,11 @@
"chmod +x /usr/bin/*" "chmod +x /usr/bin/*"
] ]
}, },
{
"type": "file",
"source": "../builder/data/etc/update-motd.d/01-motd",
"destination": "/etc/update-motd.d/01-motd",
},
{ {
"type": "shell", "type": "shell",
"inline": [ "inline": [

View File

@ -103,6 +103,10 @@ build {
provisioner "shell" { provisioner "shell" {
inline = ["chmod +x /usr/bin/*"] inline = ["chmod +x /usr/bin/*"]
} }
provisioner "file" {
destination = "/etc/update-motd.d/01-motd"
source = "../builder/data/etc/update-motd.d/01-motd"
}
provisioner "shell" { provisioner "shell" {
inline = ["chmod +x /etc/update-motd.d/*"] inline = ["chmod +x /etc/update-motd.d/*"]
} }