https://github.com/jirutka/apk-autoupdate
Automatic updates for Alpine Linux and other systems using apk-tools
https://github.com/jirutka/apk-autoupdate
alpine-linux apk-tools automatic-updates checkrestart
Last synced: 5 months ago
JSON representation
Automatic updates for Alpine Linux and other systems using apk-tools
- Host: GitHub
- URL: https://github.com/jirutka/apk-autoupdate
- Owner: jirutka
- License: mit
- Created: 2018-04-24T18:44:38.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2024-11-17T12:50:11.000Z (over 1 year ago)
- Last Synced: 2024-11-17T13:41:23.492Z (over 1 year ago)
- Topics: alpine-linux, apk-tools, automatic-updates, checkrestart
- Language: Shell
- Homepage:
- Size: 28.3 KB
- Stars: 54
- Watchers: 11
- Forks: 11
- Open Issues: 11
-
Metadata Files:
- Readme: README.adoc
- License: LICENSE
Awesome Lists containing this project
README
= APK Automatic Updates
The aim of *apk-autoupdate* is to keep the system up-to-date.
It checks available updates, installs them and restarts affected services.
The tool is intended to be executed automatically and regularly by cron or similar tool.
apk-autoupdate is designed to be flexible and highly customizable.
Its configuration file is based on shell and provides many hooks allowing you to adjust each step to your needs (see link:man/autoupdate.conf.5.adoc[autoupdate.conf(5)]).
== Manuals
* link:man/apk-autoupdate.1.adoc[apk-autoupdate(1)]
* link:man/procs-need-restart.1.adoc[procs-need-restart(1)]
* link:man/autoupdate.conf.5.adoc[autoupdate.conf(5)]
== Requirements
.*Runtime*:
* Linux system with `/proc`
* http://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html[POSIX-sh] compatible shell with support for `set -e pipefail`, `local` and `readonly` (e.g. Busybox ash, ZSH, bash, …, sadly not dash)
* https://github.com/alpinelinux/apk-tools/[apk-tools]
* common userland with `awk`, `grep`, `head`, `ps`, `sed` (e.g. from Busybox, GNU coreutils, …)
.*Build*:
* C compiler and linker supporting at least C99 (tested with clang and gcc)
* https://www.gnu.org/software/make/[GNU Make]
* http://asciidoctor.org/[Asciidoctor] (for building man pages)
== License
This project is licensed under http://opensource.org/licenses/MIT/[MIT License].
For the full text of the license, see the link:LICENSE[LICENSE] file.