summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhydrajump <wave@hydrajump.com>2014-05-06 21:36:28 +0200
committerDaniil Baturin <daniil@baturin.org>2014-06-16 12:56:29 +0200
commit0841697447d8d7ec1814c6962525b53278e63c69 (patch)
treec10a534fa3346366496ce67468355fbf555d1c1b
parent858fccfc8e48d3da7379a42b048db7719b21fdad (diff)
downloadvyatta-cfg-system-0841697447d8d7ec1814c6962525b53278e63c69.tar.gz
vyatta-cfg-system-0841697447d8d7ec1814c6962525b53278e63c69.zip
Fix to enable ec2-fetch-ssh-public-key init script
The init script was not running on boot because the init script symlinks were not created in /etc/rcX.d for the runlevels: 2,3,4,5. This fix runs the update-rc.d command in the is_amazon_ec2_ami function, thus creating the required symlinks and also updating /etc/init.d/.depends.on.start.
-rwxr-xr-xscripts/install/install-image-existing6
1 files changed, 2 insertions, 4 deletions
diff --git a/scripts/install/install-image-existing b/scripts/install/install-image-existing
index fcdb1651..50526b5f 100755
--- a/scripts/install/install-image-existing
+++ b/scripts/install/install-image-existing
@@ -44,10 +44,8 @@ is_amazon_ec2_ami () {
if [ -n "$ami_id" ]; then
echo "Installing on VyOS AMI"
- # Create a temporary file to provide conditional
- # check for init.d config in
- # /debian/vyatta-cfg-system.postinst.in L215
- touch ${INST_ROOT}${VYATTA_CFG_DIR}/.aws
+ # Create init script links for /etc/init.d/ec2-fetch-ssh-public-key
+ chroot $INST_ROOT update-rc.d ec2-fetch-ssh-public-key defaults &>/dev/null
fi
}