mirror of
https://github.com/bashclub/zamba-lxc-toolbox.git
synced 2024-12-25 11:40:12 +01:00
Add repo function
This commit is contained in:
parent
8551291e6f
commit
cbea17efdf
@ -18,3 +18,14 @@ systemctl restart nginx
|
|||||||
EOF
|
EOF
|
||||||
chmod +x /etc/cron.monthly/generate-dhparams
|
chmod +x /etc/cron.monthly/generate-dhparams
|
||||||
}
|
}
|
||||||
|
|
||||||
|
apt_repo() {
|
||||||
|
apt_name=$1
|
||||||
|
apt_key_url=$2
|
||||||
|
apt_key_path=/usr/share/keyrings/${apt_name}.gpg
|
||||||
|
apt_repo_url=$3
|
||||||
|
|
||||||
|
wget -q -O - ${apt_key_url} | gpg --dearmor -o ${apt_key_path}
|
||||||
|
echo "deb [signed-by=${apt_key_path}] ${apt_repo_url}" > /etc/apt/sources.list.d/${apt_name}.list
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user