Skip to content

Instantly share code, notes, and snippets.

@retrography
Last active August 29, 2015 14:19
Show Gist options
  • Save retrography/165929d0c6ba42d07287 to your computer and use it in GitHub Desktop.
Save retrography/165929d0c6ba42d07287 to your computer and use it in GitHub Desktop.
A script that installs and sets up NO-IP's dynamic IP updater engine on Ubuntu
#!/bin/bash
# Usage: bash noip2setup.sh HOST USERNAME PASSWORD
echo noip2 noip2/forcenatoff select false | sudo /usr/bin/debconf-set-selections
echo noip2 noip2/matchlist select $1 | sudo /usr/bin/debconf-set-selections
echo noip2 noip2/netdevice select | sudo /usr/bin/debconf-set-selections
echo noip2 noip2/password select $3 | sudo /usr/bin/debconf-set-selections
echo noip2 noip2/updating select 30 | sudo /usr/bin/debconf-set-selections
echo noip2 noip2/username select $2 | sudo /usr/bin/debconf-set-selections
cd ~
curl -O http://launchpadlibrarian.net/26258014/noip2_2.1.9-3_amd64.deb && sudo dpkg -i noip2_2.1.9-3_amd64.deb && rm noip2_2.1.9-3_amd64.deb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment