spelling oopsies

This commit is contained in:
Kameron Kenny 2019-09-23 16:11:02 -04:00
parent be4e44a61b
commit db713a1c1c
3 changed files with 4 additions and 4 deletions

View File

@ -47,7 +47,7 @@ This code simply accepts a file name, then calculates it's age in days.
## Use Your Library ## Use Your Library
Let's say we want Pulp to sync a repo every seven days... 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 %} {% highlight ruby %}
default['pulp-mirror']['sync']['cadence'] = 7 #In Days default['pulp-mirror']['sync']['cadence'] = 7 #In Days

View File

@ -3,7 +3,7 @@ layout: post
title: "Working with git" title: "Working with git"
date: 2019-02-27 11:35:00 -0500 date: 2019-02-27 11:35:00 -0500
tags: [git, repo, repository, source, code] 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 categories: git
--- ---

View File

@ -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. 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 ## Install dependencies
@ -41,7 +41,7 @@ EOF
%install %install
install -m 0775 -d $RPM_BUILD_ROOT/etc 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 %clean
rm -rf $RPM_BUILD_ROOT rm -rf $RPM_BUILD_ROOT