From db713a1c1c34ecc492a9894cc8becf1ecd5f13f5 Mon Sep 17 00:00:00 2001 From: Kameron Kenny Date: Mon, 23 Sep 2019 16:11:02 -0400 Subject: [PATCH] spelling oopsies --- _posts/2019-02-01-ruby-library-for-chef.md | 2 +- _posts/2019-02-27-working-with-git.md | 2 +- _posts/2019-09-23-building-simple-rpms.md | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/_posts/2019-02-01-ruby-library-for-chef.md b/_posts/2019-02-01-ruby-library-for-chef.md index 5a9121a..e73346c 100644 --- a/_posts/2019-02-01-ruby-library-for-chef.md +++ b/_posts/2019-02-01-ruby-library-for-chef.md @@ -47,7 +47,7 @@ This code simply accepts a file name, then calculates it's age in days. ## Use Your Library Let's say we want Pulp to sync a repo every seven days... -Create an attribute for the cadance by putting the following into `attributes/default.rb` +Create an attribute for the cadence by putting the following into `attributes/default.rb` {% highlight ruby %} default['pulp-mirror']['sync']['cadence'] = 7 #In Days diff --git a/_posts/2019-02-27-working-with-git.md b/_posts/2019-02-27-working-with-git.md index 361595c..1cc004a 100644 --- a/_posts/2019-02-27-working-with-git.md +++ b/_posts/2019-02-27-working-with-git.md @@ -3,7 +3,7 @@ layout: post title: "Working with git" date: 2019-02-27 11:35:00 -0500 tags: [git, repo, repository, source, code] -excerpt: "Git is a free and open source version control system that is distributed. Let's dive into the usage and fundamentals needed to get started with versioning your codebase." +excerpt: "Git is a free and open source version control system that is distributed. Let's dive into the usage and fundamentals needed to get started with versioning your code base." categories: git --- diff --git a/_posts/2019-09-23-building-simple-rpms.md b/_posts/2019-09-23-building-simple-rpms.md index 450a3fc..a384777 100644 --- a/_posts/2019-09-23-building-simple-rpms.md +++ b/_posts/2019-09-23-building-simple-rpms.md @@ -9,7 +9,7 @@ categories: linux rpm packaging A very simple exercise to build a basic RPM package. We're not going to dive into package signing, or some of the lower level topics of packaging RPM's - rather, our objective for now is to simply generate a file and drop it on the filesystem. -In this case, we don't care about the platoform, the OS release, or the architecture. +In this case, we don't care about the platform, the OS release, or the architecture. ## Install dependencies @@ -41,7 +41,7 @@ EOF %install install -m 0775 -d $RPM_BUILD_ROOT/etc -install -m 0644 sfmc_release $RPM_BUILD_ROOT/etc/local_release +install -m 0644 local_release $RPM_BUILD_ROOT/etc/local_release %clean rm -rf $RPM_BUILD_ROOT