sanpii / lxc-rs

Linux Containers API for rustaceans
MIT License
20 stars 5 forks source link

FIX: unfreeze method #34

Closed andreaspfeil closed 3 months ago

andreaspfeil commented 3 months ago

Changed:

/**
 * Thaw a frozen container.
 */
pub fn unfreeze(&self) -> crate::Result {
    call!(self.freeze() -> bool)
}

To: /**

I plan to implement some unimplemented methods in the close future. This pull request is just to set things up.

sanpii commented 3 months ago

Merged, thank you!