This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PLAY [localhost] ********************************************************************************************************************************************************************************** | |
TASK [download : Register docker images info] ***************************************************************************************************************************************************** | |
Monday 11 December 2017 16:39:50 -0500 (0:00:00.081) 0:00:00.081 ******* | |
TASK [download : container_download | Create dest directory for saved/loaded container images] **************************************************************************************************** | |
Monday 11 December 2017 16:39:51 -0500 (0:00:00.037) 0:00:00.119 ******* | |
TASK [download : container_download | create local directory for saved/loaded container images] *************************************************************************************************** | |
Monday 11 December 2017 16:39:51 -0500 (0:00:00.041) 0:00:00.160 *** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Firewall configuration written by system-config-firewall | |
# Manual customization of this file is not recommended. | |
*filter | |
:INPUT ACCEPT [0:0] | |
:FORWARD ACCEPT [0:0] | |
:OUTPUT ACCEPT [0:0] | |
-A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT | |
-A INPUT -p icmp -j ACCEPT | |
-A INPUT -i lo -j ACCEPT | |
-A INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?hh namespace Repositories\Generics; | |
class BaseRepository<T> | |
{ | |
private $model; | |
public function __construct(T $model) | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?hh namespace Repositories\Generics; | |
class BaseRepository<T> | |
{ | |
/** | |
* Saves the model | |
* @param T $model | |
* @return bool true if the model was saved | |
*/ | |
public function save(T $model) |