sysup 0.1.0

A small, lightweight aggregator to perform software updates on local and remote systems
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Example configuration file using a simple init syntax; config files are loaded either from ".sysup.conf",
# or from "$HOME/.config/sysup.conf", or from "/etc/sysup.conf" (in this order).
# Empty lines are ignored; "#" and ";" mark comment lines.

# A comma separated list of update steps that should be igored
;SKIP=debian-apt-autoremove,any-docker

# A list of user-defined custom commands, prefixed with "CUSTOM_" as marker
# All user-defined commands are sorted and executed in alphabetical order.
;CUSTOM_000_ECHO=echo "This is the first custom command"
;CUSTOM_999_REBOOT=reboot

# A list of user-defined SSH remote hosts to update execute sysup on, prefixed with "REMOTE_" as marker
# All user-defined SSH remote hosts are sorted and called in alphabetical order.
;REMOTE_000_EXAMPLE=user@first.example.invalid
;REMOTE_001_OTHER=user@second.other.invalid