From a5b9a8c8f96a12869e08489781cd61336978bc03 Mon Sep 17 00:00:00 2001 From: kwadronaut Date: Fri, 5 Feb 2016 00:36:39 +0100 Subject: remove ubuntu-rackspace relevant repositories --- scripts/base.sh | 2 -- 1 file changed, 2 deletions(-) (limited to 'scripts') diff --git a/scripts/base.sh b/scripts/base.sh index 08f88ee..26ce76d 100644 --- a/scripts/base.sh +++ b/scripts/base.sh @@ -1,7 +1,5 @@ #!/bin/bash -perl -p -i -e 's#http://us.archive.ubuntu.com/ubuntu#http://mirror.rackspace.com/ubuntu#gi' /etc/apt/sources.list - # Update the box apt-get -y update >/dev/null apt-get -q -y -o \'DPkg::Options::=--force-confold\' dist-upgrade -- cgit v1.2.3 From 602f9a306656f09eab2372bdee473c0e54e1294e Mon Sep 17 00:00:00 2001 From: kwadronaut Date: Fri, 5 Feb 2016 00:37:08 +0100 Subject: remove openssl as requirement, use chpasswd for root --- scripts/custom.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'scripts') diff --git a/scripts/custom.sh b/scripts/custom.sh index 99037b5..3058aa4 100644 --- a/scripts/custom.sh +++ b/scripts/custom.sh @@ -4,8 +4,7 @@ sed -i 's/PermitRootLogin without-password/PermitRootLogin yes/' /etc/ssh/sshd_config # install additional packages -# openssl is needed to set root pw later -apt-get -y install puppet lsb-release facter rsync curl openssl +apt-get -y install puppet lsb-release facter rsync curl # Set root pw -usermod -p "$(echo vagrant | openssl passwd -1 -stdin)" root +echo 'root:vagrant' | chpasswd -- cgit v1.2.3 From bd4e54fcbc59bf9d775c177beabc65543cc233c6 Mon Sep 17 00:00:00 2001 From: kwadronaut Date: Fri, 5 Feb 2016 00:44:37 +0100 Subject: sync packages with what we had with veewee --- scripts/custom.sh | 3 +++ 1 file changed, 3 insertions(+) (limited to 'scripts') diff --git a/scripts/custom.sh b/scripts/custom.sh index 3058aa4..a34d1d6 100644 --- a/scripts/custom.sh +++ b/scripts/custom.sh @@ -6,5 +6,8 @@ sed -i 's/PermitRootLogin without-password/PermitRootLogin yes/' /etc/ssh/sshd_c # install additional packages apt-get -y install puppet lsb-release facter rsync curl +# LEAP people like this: see also #6898 +apt-get -y install unzip vim tmux ntpdate git rdoc + # Set root pw echo 'root:vagrant' | chpasswd -- cgit v1.2.3