Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/env bash
- function execute_command_with_sudo() {
- if [ "$EUID" -ne 0 ]; then
- sudo "$@"
- else
- "$@"
- fi
- }
- function check_config_file() {
- local config_file="/etc/apt/apt.conf.d/10periodic"
- if [ ! -f "$config_file" ]; then
- echo "Arquivo de configuração $config_file não encontrado."
- exit 1
- fi
- }
- # Função para desativar as atualizações
- function disable_autoupdates() {
- local options=(
- "APT::Periodic::Update-Package-Lists 0;"
- "APT::Periodic::Download-Upgradeable-Packages 0;"
- "APT::Periodic::AutocleanInterval 0;"
- )
- for option in "${options[@]}"; do
- if grep -q "$option" "$config_file"; then
- echo "Já desativado: $option"
- else
- echo "$option" | execute_command_with_sudo tee -a "$config_file"
- echo "Desativado: $option"
- fi
- done
- restart_apt_service
- }
- function restart_apt_service() {
- execute_command_with_sudo systemctl restart apt-daily.timer
- execute_command_with_sudo systemctl restart apt-daily-upgrade.timer
- echo "Serviço APT reiniciado."
- }
- if [ "$EUID" -ne 0 ]; then
- clear
- echo "Este script requer privilégios de superusuário para editar as configurações."
- exit 1
- fi
- # configuração e desativar as atualizações
- check_config_file && disable_autoupdates
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement