9 lines
272 B
Bash
9 lines
272 B
Bash
#!/bin/bash
|
|
|
|
apt install software-properties-common -y
|
|
apt install python-software-properties -y
|
|
sudo add-apt-repository ppa:ondrej/php -y
|
|
apt update; apt upgrade -y
|
|
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 4F4EA0AAE5267A6C
|
|
apt update; apt upgrade -y
|