# File lib/simp/cli/config/items/action/set_production_to_simp_action.rb, line 92
    def set_secondary_environment
      success = false
      production_path = File.join(@secondary_env_path, 'production')
      if File.exists?(production_path)#TODO should we verify this is a directory or a link?
        debug( "Secondary environment link not required:" + 
          " #{production_path} already exits" )
        success = true
      else
        simp_environment_path = File.join(@secondary_env_path, 'simp')
        if Dir.exists?(simp_environment_path)
          debug( "Linking #{production_path} to #{simp_environment_path}" )
          Dir.chdir(@secondary_env_path) do
            File.symlink('simp', 'production')
          end
          success = true
        else
          error( "\nERROR: 'simp' secondary environment path not found: #{simp_environment_path}", [:RED] )
        end
      end
      success
    end