From d547f9564fb8aae5e2839cfbc5f54a706398a2b0 Mon Sep 17 00:00:00 2001 From: elijah Date: Fri, 12 Feb 2016 15:07:58 -0800 Subject: require jessie and created note_init script for node initialization --- bin/puppet_command | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'bin/puppet_command') diff --git a/bin/puppet_command b/bin/puppet_command index 1e74522a..702c8cbd 100755 --- a/bin/puppet_command +++ b/bin/puppet_command @@ -13,6 +13,7 @@ require 'logger' require 'socket' require 'fileutils' +DEBIAN_VERSION = /^(jessie|8\.)/ PUPPET_BIN = '/usr/bin/puppet' PUPPET_DIRECTORY = '/srv/leap' PUPPET_PARAMETERS = '--color=false --detailed-exitcodes --libdir=puppet/lib --confdir=puppet' @@ -28,7 +29,12 @@ SUMMARY_LOG_1 = '/var/log/leap/deploy-summary.log.1' APPLY_START_STR = "STARTING APPLY" APPLY_FINISH_STR = "APPLY COMPLETE" + def main + if File.read('/etc/debian_version') !~ DEBIAN_VERSION + log "ERROR: This operating system is not supported. The file /etc/debian_version must match #{DEBIAN_VERSION}." + exit 1 + end process_command_line_arguments with_lockfile do @commands.each do |command| -- cgit v1.2.3