10 lines
350 B
Bash
10 lines
350 B
Bash
#!/bin/bash
|
|
#install outdated dep
|
|
yay -U https://prov.franscorack.com/pkg/automake-1.16.5-2-any.pkg.tar.zst --needed --noconfirm &&
|
|
#install client
|
|
yay -S urbackup2-client-no-gui lsb-release --needed --noconfirm &&
|
|
sudo systemctl enable urbackupclientbackend
|
|
sudo systemctl start urbackupclientbackend
|
|
#update dep
|
|
yay -Syy
|
|
yay -S automake --noconfirm |