* Script work is brought into better focus * New layout will be used to better package the python scripts * No hidden folders (they will be hidden at build time) * All building should be done under setup/ * Avoids ambiguous .bin/.cbin folders at root of project
15 lines
444 B
Bash
Executable file
15 lines
444 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
## Wizard Kit: Update pacman settings to usage in live sessions
|
|
|
|
# Disable custom repo (used at build-time)
|
|
sudo sed -i -r "s/^(\[custom\])/#\1/" /etc/pacman.conf
|
|
sudo sed -i -r "s/^(SigLevel = Optional TrustAll)/#\1/" /etc/pacman.conf
|
|
sudo sed -i -r "s/^(Server = )/#\1/" /etc/pacman.conf
|
|
|
|
# Disable signature checks
|
|
sudo sed -i -r "s/^SigLevel.*/SigLevel = Never/" /etc/pacman.conf
|
|
|
|
# Refresh package databases
|
|
sudo pacman -Sy
|
|
|