mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-09 05:44:23 +00:00
16 lines
255 B
YAML
16 lines
255 B
YAML
#cloud-config
|
|
|
|
##
|
|
# Tested on:
|
|
# - Amazon Linux 2023.4.20240416
|
|
# - RHEL 8.6
|
|
##
|
|
|
|
write_files:
|
|
- path: /etc/cron.daily/security-updates
|
|
permissions: '0755'
|
|
content: |
|
|
#!/bin/bash
|
|
dnf -y upgrade --security --nobest
|
|
defer: true
|