When you change the instance type of an AWS RDS instance, the availability zone of the instance has to have available capacity of the selected type. Some older availability zones (us-east-1a) have more old instance types than new types available. If the instance type you selected is not available in the current zone of the …
Author Archives: Laszlo Pinter
Exit from Bash script on error without closing the terminal window
To terminate the script in case of an error, we can use the “-e” option. When a bash script is “sourced”, called from an alias with a leading dot like my-alias=’. /my-script to execute in the same process, or a function is executed from a terminal window and the script exits on an error, it …
Continue reading “Exit from Bash script on error without closing the terminal window”
Error: Failed to install cookbooks from lockfile
When the CI/CD pipeline loads dependency cookbooks from GitHub and the kitchen converge process throws the error: Error: Failed to install cookbooks from lockfileReason: (CookbookOmnifetch::NotACookbook) The resource at ‘/…’ does not appear to be a valid cookbook. Does it have a metadata.rb? make sure the remote revisions of the dependency cookbook match in the caller …
Continue reading “Error: Failed to install cookbooks from lockfile”
Install Python 3 on MacOS
The MacOS comes with an old version of Python 2. For new software development Python 3 is the recommended version. Replacing the original Python 2 with Python 3 can cause instability in the MacOS. There are multiple ways to install Python 3 and keep Python 2 pn the Mac. This is the most recommended process: …
Install and configure iTerm2
iTerm2 configuration Install Oh My Zsh Oh My Zsh is an open source, community-driven framework for managing your zsh configuration. More info at https://github.com/ohmyzsh/ohmyzsh Use .bashrc for configuration When you start iTerm, it reads its own config file, ~/.zshrc To keep using the standard ~/.bashrc config file Enable unlimited scroll back Set the highlight color By default …
chef push always regenerates the revision id and Policyfile.lock.json
If the chef update and chef push commands always regenerate the Policyfile.lock.json file and the revision_id in it, make sure the Chef cookbook contains the chefignore file and it also references all possible Policyfile lock files: If a cookbook file changes, a new Policyfile.lock.json is generated during chef push. chef update and chef push always check …
Continue reading “chef push always regenerates the revision id and Policyfile.lock.json”
Failed to complete #create action: [undefined method `[]’ for nil:NilClass] on …
When we launch a test instance with Chef Test Kitchen, we may get the error message: —–> Starting Test Kitchen (…)—–> Creating …——Exception——->>>>>> Class: Kitchen::ActionFailed>>>>>> Message: 1 actions failed.>>>>>> Failed to complete #create action: [undefined method `[]’ for nil:NilClass] on …>>>>>> ———————->>>>>> Please see .kitchen/logs/kitchen.log for more details>>>>>> Also try running kitchen diagnose –all for …
Continue reading “Failed to complete #create action: [undefined method `[]’ for nil:NilClass] on …”
Tejes vajas fonott császárzsemle
Igazi békebeli fonott császárzsemle receptet találtunk Gábornál. Hozzávalók TangZhong (előtészta)260 ml tej40 g lisztösszemelegítve. Az élesztőhöz230-250 ml tejben24 g élesztőegy csipet cukorral felfuttatjuk A tésztához650 g finom liszt10- 12 g só12 g cukor35 g vaj Előkészítés Felfuttatjuk az élesztőt Előtészta:Mielőtt forrni kezdene a tej, lecsökkentjük a hőmérsékletet és gyors keverés mellett lassan beleöntjük a lisztet. …
Friss élesztő és szárított élesztő összehasonlítása
A legegyszerűbben a következő formulával hasonlíthatjuk össze a friss élesztőt és a szárított élesztőt: 1 g szárított élesztő 3 g friss élszetőnek felel meg. Ha nincs eléggé érzékeny mérlegünk, 1 teáskanál ( 3 g ) szárított élesztő 9 g friss élesztőnek felel meg.
extra characters at the end of n command
When you use sed to insert a template file into another file with the command and get the error message extra characters at the end of n command Make sure the template file supplied in $1 does not have an empty line at the top.