#!/bin/bash

if [ -d /boot/env.d -a \( $(ls /boot/env.d/ | wc -l ) -gt 0 \) ]
then
    cat /boot/env.d/* > /boot/configs.txt
fi
