pages:howtos:tmux:runnig_updates_in_tmux
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
pages:howtos:tmux:runnig_updates_in_tmux [2022/04/13 09:19] – created mischerh | pages:howtos:tmux:runnig_updates_in_tmux [2022/06/19 17:07] (current) – [Implementation] mischerh | ||
---|---|---|---|
Line 1: | Line 1: | ||
{{tag> | {{tag> | ||
- | ====== | + | ====== |
+ | I want to make updates to be executed inside a **tmux-session** to make the update process resilient against interrupted ssh-connections. | ||
+ | * update distribution packages on SUSE and Debian | ||
+ | * update git repositories | ||
+ | * update flatpak packages | ||
+ | * < | ||
+ | ===== Sources ===== | ||
+ | * https:// | ||
+ | * https:// | ||
+ | * https:// | ||
+ | * https:// | ||
+ | * https:// | ||
+ | * https:// | ||
+ | * https:// | ||
+ | * https:// | ||
+ | * https:// | ||
+ | * https:// | ||
+ | |||
+ | ===== ToDo ===== | ||
+ | * https:// | ||
+ | |||
+ | ===== Implementation ===== | ||
+ | <sxh bash; gutter: false> | ||
+ | zypper in lsb-release | ||
+ | |||
+ | |||
+ | install -bD --owner=root --group=root --mode=0750 -T <(cat << ' | ||
+ | #!/bin/bash | ||
+ | | ||
+ | # debug | ||
+ | #set -x | ||
+ | |||
+ | declare _updatecommand | ||
+ | declare _flatpak_updatecommand | ||
+ | declare _gitup_user_updatecommand | ||
+ | declare _osvendor | ||
+ | declare _highlevelpackagemanager | ||
+ | declare _os_updatecommand | ||
+ | |||
+ | _flatpak_updatecommand=" | ||
+ | _gitup_user_updatecommand=" | ||
+ | | ||
+ | if [ ! command -v lsb-release >/ | ||
+ | then | ||
+ | echo >&2 " | ||
+ | exit 1; | ||
+ | fi | ||
+ | | ||
+ | _osvendor=" | ||
+ | | ||
+ | | ||
+ | case $_osvendor in | ||
+ | openSUSE) | ||
+ | _highlevelpackagemanager=" | ||
+ | _os_updatecommand=" | ||
+ | ;; | ||
+ | | ||
+ | Debian) | ||
+ | _highlevelpackagemanager=" | ||
+ | _os_updatecommand=" | ||
+ | ;; | ||
+ | | ||
+ | *) | ||
+ | echo >&2 " | ||
+ | exit 1 | ||
+ | ;; | ||
+ | esac | ||
+ | |||
+ | _updatecommand=" | ||
+ | |||
+ | tmux new -s sysupdate -d | ||
+ | tmux send-keys -t sysupdate " | ||
+ | tmux attach -t sysupdate | ||
+ | EOF | ||
+ | ) / | ||
+ | |||
+ | ln -s / | ||
+ | |||
+ | # as user | ||
+ | su - < | ||
+ | mkdir -pv ~/ | ||
+ | git clone https:// | ||
+ | cd ~/ | ||
+ | python ./setup.py install --user | ||
+ | </ | ||
+ | add ~/ | ||
+ | <sxh bash; gutter: false> | ||
+ | vim ~/.bashrc | ||
+ | </ | ||
+ | <sxh bash; highlight: []; title: ~/ | ||
+ | # PATH | ||
+ | export PATH=" | ||
+ | </ | ||
+ | <sxh bash; gutter: false> | ||
+ | source | ||
+ | gitup --add ~/repos/ | ||
+ | </ | ||
+ | |||
+ | <sxh bash; gutter: false> | ||
+ | # as root | ||
+ | install -bD --owner=root --group=root --mode=0750 -T <(cat << ' | ||
+ | [Unit] | ||
+ | Description=Update Flatpak | ||
+ | After=network-online.target | ||
+ | Wants=network-online.target | ||
+ | |||
+ | [Service] | ||
+ | Type=oneshot | ||
+ | ExecStart=/ | ||
+ | |||
+ | [Install] | ||
+ | WantedBy=multi-user.target | ||
+ | EOF) / | ||
+ | |||
+ | install -bD --owner=root --group=root --mode=0750 -T <(cat << ' | ||
+ | [Unit] | ||
+ | Description=Update Flatpak | ||
+ | |||
+ | [Timer] | ||
+ | OnBootSec=2m | ||
+ | OnActiveSec=2m | ||
+ | OnUnitInactiveSec=24h | ||
+ | OnUnitActiveSec=24h | ||
+ | AccuracySec=1h | ||
+ | RandomizedDelaySec=10m | ||
+ | |||
+ | [Install] | ||
+ | WantedBy=timers.target | ||
+ | EOF) / | ||
+ | |||
+ | </ | ||
---- | ---- | ||
~~DISCUSSION~~ | ~~DISCUSSION~~ | ||
pages/howtos/tmux/runnig_updates_in_tmux.1649841558.txt.gz · Last modified: 2022/04/13 09:19 by mischerh