Insert custom metatag in all the internal pages of the site, less in the homepage

You will have to use this code.

<?php !is_home() : ?>
    <meta name="googlebot" content="noindex,noarchive,follow"/>
<?php endif; ?>

Keep in mind you are using php and you want to put some HTML within. You cannot simply write down everything like that.