diff options
-rwxr-xr-x | scripts/install/install-image-existing | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/install/install-image-existing b/scripts/install/install-image-existing index d7f2578b..080313bd 100755 --- a/scripts/install/install-image-existing +++ b/scripts/install/install-image-existing @@ -46,6 +46,11 @@ is_amazon_ec2_ami () { # 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 + + # Dijkstra, forgive us! + return 0 + else + return 1 fi } |