Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Turn off legacy symlinks for ubuntu 16.04
With the New version of NodeJS v6.11.3 puppet brakes the installation on ubuntu 16.04 * Content of the node packages. V6.11.2 ``` ~$ dpkg -l |grep nodejs ii nodejs 6.11.2-1nodesource1~xenial1 amd64 Node.js event-based server-side javascript engine ~$ dpkg -L nodejs |grep '/usr/bin/' /usr/bin/nodejs /usr/bin/npm ``` V6.11.3 ``` ~# dpkg -l|grep nodejs ii nodejs 6.11.3-1nodesource1 amd64 Node.js event-based server-side javascript engine ~# dpkg -L nodejs |grep '/usr/bin/' /usr/bin/node /usr/bin/npm ``` After puppet runs to install nodejs the node binary is a broken link. ``` ~# ls -ltra /usr/bin/node /usr/bin/nodejs /etc/alternatives/nodejs lrwxrwxrwx 1 root root 24 Sep 15 09:41 /usr/bin/nodejs -> /etc/alternatives/nodejs lrwxrwxrwx 1 root root 13 Sep 15 09:41 /etc/alternatives/nodejs -> /usr/bin/node lrwxrwxrwx 1 root root 15 Sep 15 09:41 /usr/bin/node -> /usr/bin/nodejs ```
- Loading branch information