1
0
mirror of https://github.com/projectatomic/atomic.git synced 2026-02-05 09:44:59 +01:00
Files
atomic/atomic.sh
Jonathan Lebon 74ac1a01d9 atomic.sh: fix up typo in var name
Whoops! :)
2015-07-16 12:32:57 -04:00

33 lines
912 B
Bash
Executable File

#
# Licensed under the GNU General Public License Version 2
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
command_not_found_handle () {
local runcnf=1
local retval=127
[ -f /etc/sysconfig/atomic ] && . /etc/sysconfig/atomic
# only search for the command if we're interactive
[[ $- =~ i ]] || runcnf=0
# don't run if not on an atomic host or tools
([ -n "${TOOLSIMG}" ] && [ -f /run/ostree-booted ] && [ -x /usr/bin/atomic ]) || runcnf=0
# run the command, or just print a warning
if [ $runcnf -eq 1 ]; then
echo "Redirecting to container ${TOOLSIMG}..."
atomic run ${TOOLSIMG} "$@"
retval=$?
else
echo "bash: $1: command not found"
fi
# return success or failure
return $retval
}