#!/bin/bash

{{% if 'ubuntu' in product %}}
# platform = Not Applicable
{{% endif %}}

# variables = var_accounts_tmout=600

sed -i "/.*TMOUT.*/d" /etc/profile.d/*.sh

if grep -q "^TMOUT" /etc/profile; then
	sed -i "s/^TMOUT.*/# TMOUT=600/" /etc/profile
else
	echo "# TMOUT=600" >> /etc/profile
fi
