pages:howtos:tmux:runnig_updates_in_tmux
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
pages:howtos:tmux:runnig_updates_in_tmux [2022/04/13 12:38] – mischerh | pages:howtos:tmux:runnig_updates_in_tmux [2022/06/19 17:07] (current) – [Implementation] mischerh | ||
---|---|---|---|
Line 6: | Line 6: | ||
* update git repositories | * update git repositories | ||
* update flatpak packages | * update flatpak packages | ||
- | * update snap packages | + | * <del>update snap packages</ |
===== Sources ===== | ===== Sources ===== | ||
Line 18: | Line 18: | ||
* https:// | * https:// | ||
* https:// | * https:// | ||
+ | * https:// | ||
- | ===== Headline | + | ===== ToDo ===== |
+ | * https:// | ||
+ | |||
+ | ===== Implementation | ||
<sxh bash; gutter: false> | <sxh bash; gutter: false> | ||
zypper in lsb-release | zypper in lsb-release | ||
+ | |||
install -bD --owner=root --group=root --mode=0750 -T <(cat << ' | install -bD --owner=root --group=root --mode=0750 -T <(cat << ' | ||
#!/bin/bash | #!/bin/bash | ||
+ | | ||
# debug | # debug | ||
- | set -x | + | #set -x |
+ | |||
+ | declare _updatecommand | ||
+ | declare _flatpak_updatecommand | ||
+ | declare _gitup_user_updatecommand | ||
declare _osvendor | declare _osvendor | ||
declare _highlevelpackagemanager | declare _highlevelpackagemanager | ||
- | declare | + | declare |
+ | |||
+ | _flatpak_updatecommand=" | ||
+ | _gitup_user_updatecommand=" | ||
+ | | ||
if [ ! command -v lsb-release >/ | if [ ! command -v lsb-release >/ | ||
then | then | ||
Line 38: | Line 49: | ||
exit 1; | exit 1; | ||
fi | fi | ||
+ | | ||
_osvendor=" | _osvendor=" | ||
- | + | | |
+ | |||
case $_osvendor in | case $_osvendor in | ||
openSUSE) | openSUSE) | ||
_highlevelpackagemanager=" | _highlevelpackagemanager=" | ||
- | | + | |
;; | ;; | ||
- | | + | |
Debian) | Debian) | ||
_highlevelpackagemanager=" | _highlevelpackagemanager=" | ||
- | | + | |
;; | ;; | ||
+ | | ||
*) | *) | ||
- | echo >&2 " | + | echo >&2 " |
exit 1 | exit 1 | ||
;; | ;; | ||
esac | esac | ||
- | + | ||
+ | _updatecommand=" | ||
+ | |||
tmux new -s sysupdate -d | tmux new -s sysupdate -d | ||
tmux send-keys -t sysupdate " | tmux send-keys -t sysupdate " | ||
Line 67: | Line 79: | ||
ln -s / | 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.1649853513.txt.gz · Last modified: 2022/04/13 12:38 by mischerh