Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/sh
- clear_motd()
- {
- echo "Clear MOTD"
- cat /dev/null > /etc/motd
- }
- update_system()
- {
- echo "Update System"
- apt update
- }
- upgrade_system()
- {
- echo "Upgrade System"
- apt upgrade
- }
- change_hostname()
- {
- echo "Change Hostname"
- hostnamectl set-hostname s1.mexxio.pl
- }
- clear_motd
- update_system
- upgrade_system
- change_hostname
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement